summaryrefslogtreecommitdiff
path: root/hdl/ram_controller.sv
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hdl/ram_controller.sv6
1 files changed, 3 insertions, 3 deletions
diff --git a/hdl/ram_controller.sv b/hdl/ram_controller.sv
index 14a1609..c67edc3 100644
--- a/hdl/ram_controller.sv
+++ b/hdl/ram_controller.sv
@@ -9,11 +9,11 @@ module ram_controller
9 9
10 , output bit command_ready 10 , output bit command_ready
11 , input bit command_valid 11 , input bit command_valid
12 , input ram_command_t command_data 12 , input arb_to_ram_t command_data
13 13
14 , input bit result_ready 14 , input bit result_ready
15 , output bit result_valid 15 , output bit result_valid
16 , output ram_read_response_t result_data 16 , output ram_to_arb_t result_data
17 17
18 , output bit ram_resetn 18 , output bit ram_resetn
19 , output bit ram_csn 19 , output bit ram_csn
@@ -30,7 +30,7 @@ module ram_controller
30 assign ram_clkn = !ram_clkp; 30 assign ram_clkn = !ram_clkp;
31 31
32 bit valid; 32 bit valid;
33 ram_command_t command; 33 arb_to_ram_t command;
34 ram_word_address_t base_address; 34 ram_word_address_t base_address;
35 35
36 bit slow; 36 bit slow;