mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 13:47:13 -04:00
Flag excepting instruction as valid
This commit is contained in:
parent
e2424c1cc2
commit
a569aede23
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ module decoder (
|
|||
// ---------------------
|
||||
always_comb begin : exception_handling
|
||||
instruction_o.ex = ex_i;
|
||||
instruction_o.valid = 1'b0;
|
||||
instruction_o.valid = ex_i.valid;
|
||||
// look if we didn't already get an exception in any previous
|
||||
// stage - we should not overwrite it as we retain order regarding the exception
|
||||
if (~ex_i.valid) begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue