mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-19 03:44:46 -04:00
Initialize compressed related signals in id_stage when RVC is disabled (#2833)
Add else case to initialize signals going into decoder. Should fix #2819
This commit is contained in:
parent
0e2e5128b2
commit
b38c259c8c
1 changed files with 7 additions and 0 deletions
|
@ -269,6 +269,13 @@ module id_stage #(
|
|||
end else begin
|
||||
assign stall_instr_fetch[0] = stall_macro_deco;
|
||||
end
|
||||
end else begin
|
||||
for (genvar i = 0; i < CVA6Cfg.NrIssuePorts; i++) begin
|
||||
assign is_illegal_rvc[i] = 1'b0;
|
||||
assign instruction_rvc[i] = fetch_entry_i[i].instruction;
|
||||
assign is_compressed_rvc[i] = 1'b0;
|
||||
assign stall_instr_fetch[i] = 1'b0;
|
||||
end
|
||||
end
|
||||
|
||||
// ---------------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue