summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-02-20 15:27:38 -0800
committerJulian Blake Kongslie2022-02-20 15:27:38 -0800
commitd9be81d78a2f8ddd8c4e2511b5d46de4f73d2e3a (patch)
tree761630e4634b64f7662e3f1f756ee85dde1be4e7
parentFix timing and RWDS handling. (diff)
downloadsimple-memory-controller-main.tar.xz
Use linear burst mode instead of hybrid.HEADmain
-rw-r--r--hdl/ram_controller.sv2
1 files changed, 1 insertions, 1 deletions
diff --git a/hdl/ram_controller.sv b/hdl/ram_controller.sv
index 5ce0478..f3272e7 100644
--- a/hdl/ram_controller.sv
+++ b/hdl/ram_controller.sv
@@ -144,7 +144,7 @@ module ram_controller
144 144
145 SEND_COMMAND_1: begin 145 SEND_COMMAND_1: begin
146 ram_data_oe = 1; 146 ram_data_oe = 1;
147 ram_data_out = {!write, 1'b0, 1'b0, 5'b0}; // R/W#, ADDRSPACE, BURST, RESERVED 147 ram_data_out = {!write, 1'b0, 1'b1, 5'b0}; // R/W#, ADDRSPACE, BURST, RESERVED
148 end 148 end
149 149
150 SEND_COMMAND_2: begin 150 SEND_COMMAND_2: begin