diff options
| author | Julian Blake Kongslie | 2022-07-10 14:23:22 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-07-10 14:23:22 -0700 |
| commit | 641151b7123c4e5dbbb95392f65c0f3960fc0fef (patch) | |
| tree | d918278edf3b4218097d125d013e4be35b92be5c /hdl/ram_controller.sv | |
| parent | Update PLAN. (diff) | |
| download | multipdp8-641151b7123c4e5dbbb95392f65c0f3960fc0fef.tar.xz | |
Rename memory message types for more clarity.
Diffstat (limited to 'hdl/ram_controller.sv')
| -rw-r--r-- | hdl/ram_controller.sv | 6 |
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; |
