diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-10-09 19:25:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-10-09 19:25:27 -0600 |
| commit | 7d95ff01bcd8c42efe118fd1bddaabfca0e937eb (patch) | |
| tree | 1d61430989192de9f34fb327772ceff7cac5c71a /rtl/core/uarch.sv | |
| parent | 1f1f61bbab1396278a861e46fd65a50d1914585e (diff) | |
Implement most memory transactions
Diffstat (limited to 'rtl/core/uarch.sv')
| -rw-r--r-- | rtl/core/uarch.sv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/uarch.sv b/rtl/core/uarch.sv index 2cd6f24..bd9ed03 100644 --- a/rtl/core/uarch.sv +++ b/rtl/core/uarch.sv @@ -5,6 +5,7 @@ `define NOP 32'd0 typedef logic[3:0] reg_num; +typedef logic[15:0] reg_list; typedef logic[31:0] word; typedef logic[29:0] ptr; @@ -104,7 +105,7 @@ typedef struct packed /* P. 482: "If no bits are set, the result is UNPREDICTABLE." * Esto permite diferenciar entre ldst mĂșltiple y simple. */ - logic[15:0] reg_list; + reg_list regs; } ldst_decode; typedef struct packed |
