diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-10-23 23:27:51 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-10-23 23:27:51 -0600 |
| commit | 1e17c6994897bc2edbde3b52db6a1e39d9a20f03 (patch) | |
| tree | 7fdb115cb159eaa7231739073c24215f84550732 /rtl/core/uarch.sv | |
| parent | 1ad7b946c13493a19fcebb0d1d1e1c4397f476e8 (diff) | |
Move branch control signals to struct branch_decode
Diffstat (limited to 'rtl/core/uarch.sv')
| -rw-r--r-- | rtl/core/uarch.sv | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rtl/core/uarch.sv b/rtl/core/uarch.sv index 5b4183c..1574895 100644 --- a/rtl/core/uarch.sv +++ b/rtl/core/uarch.sv @@ -66,6 +66,12 @@ typedef struct packed typedef struct packed { + logic branch; + ptr offset; +} branch_decode; + +typedef struct packed +{ reg_num r, r_shift; logic shift_by_reg, |
