summaryrefslogtreecommitdiff
path: root/hdl/result_printer.sv
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-07-10 14:23:22 -0700
committerJulian Blake Kongslie2022-07-10 14:23:22 -0700
commit641151b7123c4e5dbbb95392f65c0f3960fc0fef (patch)
treed918278edf3b4218097d125d013e4be35b92be5c /hdl/result_printer.sv
parentUpdate PLAN. (diff)
downloadmultipdp8-641151b7123c4e5dbbb95392f65c0f3960fc0fef.tar.xz
Rename memory message types for more clarity.
Diffstat (limited to '')
-rw-r--r--hdl/result_printer.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/hdl/result_printer.sv b/hdl/result_printer.sv
index 322fac0..f9910f9 100644
--- a/hdl/result_printer.sv
+++ b/hdl/result_printer.sv
@@ -6,7 +6,7 @@ module result_printer
6 6
7 , output bit result_ready 7 , output bit result_ready
8 , input bit result_valid 8 , input bit result_valid
9 , input ram_read_response_t result_data 9 , input ram_to_arb_t result_data
10 10
11 , input bit echo_ready 11 , input bit echo_ready
12 , output bit echo_valid 12 , output bit echo_valid
@@ -18,7 +18,7 @@ module result_printer
18 ); 18 );
19 19
20 bit hold_valid; 20 bit hold_valid;
21 ram_read_response_t hold; 21 ram_to_arb_t hold;
22 bit loop; 22 bit loop;
23 ram_byte_count_t byte_count; 23 ram_byte_count_t byte_count;
24 ram_word_count_t word_count; 24 ram_word_count_t word_count;