Skip to content

Commit

Permalink
Update core/compressed_decoder.sv
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
rohan-10xe and github-actions[bot] authored Feb 3, 2024
1 parent 008bab6 commit d627652
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/compressed_decoder.sv
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ module compressed_decoder #(
// Compressed Decoder
// -------------------
always_comb begin
illegal_instr_o = 1'b0;
instr_o = '0;
is_compressed_o = 1'b1;
instr_o = instr_i;
illegal_instr_o = 1'b0;
instr_o = '0;
is_compressed_o = 1'b1;
instr_o = instr_i;
is_zcmp_instr_o = 0;

// I: | imm[11:0] | rs1 | funct3 | rd | opcode |
Expand Down

0 comments on commit d627652

Please sign in to comment.