summaryrefslogtreecommitdiff
path: root/hdl/command_parser.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/command_parser.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 'hdl/command_parser.sv')
-rw-r--r--hdl/command_parser.sv2
1 files changed, 1 insertions, 1 deletions
diff --git a/hdl/command_parser.sv b/hdl/command_parser.sv
index 39e03db..92abced 100644
--- a/hdl/command_parser.sv
+++ b/hdl/command_parser.sv
@@ -12,7 +12,7 @@ module command_parser
12 12
13 , input bit command_ready 13 , input bit command_ready
14 , output bit command_valid 14 , output bit command_valid
15 , output bit [23:0] command_address 15 , output bit [22:0] command_address
16 , output bit command_write 16 , output bit command_write
17 , output bit [15:0] command_data 17 , output bit [15:0] command_data
18 ); 18 );