diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-09-27 19:52:26 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-09-27 19:52:26 -0600 |
| commit | 5e2f6be247018699d71d32887010830ba45b8349 (patch) | |
| tree | 72a45e73de7e15ef0dcfdbc4eaee1f3cd8d286c3 /rtl/core/psr.sv | |
| parent | ec7649eef16c7f9c3ca4b74a1cea95eb2f524b29 (diff) | |
Switch from operand forwarding to next insn stalls (improves Fmax)
Diffstat (limited to 'rtl/core/psr.sv')
| -rw-r--r-- | rtl/core/psr.sv | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rtl/core/psr.sv b/rtl/core/psr.sv index 2c0d48f..bc682c1 100644 --- a/rtl/core/psr.sv +++ b/rtl/core/psr.sv @@ -7,10 +7,11 @@ module core_psr alu_v_valid, input psr_flags alu_flags, - output psr_flags flags, - next_flags + output psr_flags flags ); + psr_flags next_flags; + always_comb begin next_flags = flags; |
