diff options
| author | Julian Blake Kongslie | 2022-02-20 15:25:50 -0800 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-02-20 15:25:50 -0800 |
| commit | 75410a2a7f0abb8677c1e03bfe2238923219aa46 (patch) | |
| tree | 81fea2837594bb41db986cb746a245df84383ce8 /hdl/top.sv | |
| parent | SignalTap bullshit. (diff) | |
| download | simple-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.sv | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||
