diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-09-19 20:27:22 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-09-19 20:27:22 -0600 |
| commit | 377e5277a672348636ed0696bf64d2d3d518bff7 (patch) | |
| tree | a9ea8475d30ddf8dae3861c67c94533c8eb255b5 /rtl | |
| parent | b762fc978a49910986e00e6c08e0afbe1e612858 (diff) | |
DDR3 is working
Diffstat (limited to 'rtl')
| -rw-r--r-- | rtl/top/conspiracion.sv | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rtl/top/conspiracion.sv b/rtl/top/conspiracion.sv index 30aa95f..3177b98 100644 --- a/rtl/top/conspiracion.sv +++ b/rtl/top/conspiracion.sv @@ -17,13 +17,16 @@ module conspiracion output wire memory_mem_odt, output wire memory_mem_dm, input wire memory_oct_rzqin, - input wire reset_reset_n, + /*input wire reset_reset_n,*/ input logic dir, clr, mov, add, io, output logic[7:0] out, output logic done ); + wire reset_reset_n; + assign reset_reset_n = 1'b1; + enum { IDLE, IO, |
