summaryrefslogtreecommitdiff
path: root/hdl/top.sv
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-02-20 15:25:50 -0800
committerJulian Blake Kongslie2022-02-20 15:25:50 -0800
commit75410a2a7f0abb8677c1e03bfe2238923219aa46 (patch)
tree81fea2837594bb41db986cb746a245df84383ce8 /hdl/top.sv
parentSignalTap bullshit. (diff)
downloadsimple-memory-controller-75410a2a7f0abb8677c1e03bfe2238923219aa46.tar.xz
CSn[0] is, in fact, a lie. We only have 23 bits of address space.
Diffstat (limited to '')
-rw-r--r--hdl/top.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/hdl/top.sv b/hdl/top.sv
index 4fe4130..e170fe0 100644
--- a/hdl/top.sv
+++ b/hdl/top.sv
@@ -3,7 +3,7 @@ module top
3 , input bit resetn 3 , input bit resetn
4 4
5 , output bit ram_resetn 5 , output bit ram_resetn
6 , output bit [1:0] ram_csn 6 , output bit ram_csn
7 , output bit ram_clkp 7 , output bit ram_clkp
8 , output bit ram_clkn 8 , output bit ram_clkn
9 , inout bit ram_rwds 9 , inout bit ram_rwds
@@ -28,7 +28,7 @@ module top
28 28
29 bit command_ready; 29 bit command_ready;
30 bit command_valid; 30 bit command_valid;
31 bit [23:0] command_address; 31 bit [22:0] command_address;
32 bit command_write; 32 bit command_write;
33 bit [15:0] command_data; 33 bit [15:0] command_data;
34 34