Skip to content

Commit

Permalink
[rtl] simplify RVC decompressor
Browse files Browse the repository at this point in the history
output illegal instruction words "as-is" in their pre-decoded 32-bit layout
  • Loading branch information
stnolting committed Jun 29, 2024
1 parent 98a4015 commit 3beb259
Show file tree
Hide file tree
Showing 2 changed files with 154 additions and 155 deletions.
4 changes: 2 additions & 2 deletions rtl/core/neorv32_cpu_control.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ begin
if CPU_EXTENSION_RISCV_C generate
neorv32_cpu_decompressor_inst: entity neorv32.neorv32_cpu_decompressor
port map (
ci_instr16_i => issue_engine.ci_i16,
ci_instr32_o => issue_engine.ci_i32
instr16_i => issue_engine.ci_i16,
instr32_o => issue_engine.ci_i32
);
end generate;

Expand Down
Loading

0 comments on commit 3beb259

Please sign in to comment.