mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 12:57:13 -04:00
correct wrong assignment to enum
This commit is contained in:
parent
4223803d22
commit
9208689c21
1 changed files with 1 additions and 1 deletions
|
@ -483,7 +483,7 @@ class core_ibex_directed_test extends core_ibex_debug_intr_basic_test;
|
|||
bit [12:0] system_imm;
|
||||
instr_t instr_fields;
|
||||
|
||||
opcode = instr[6:0];
|
||||
opcode = ibex_pkg::opcode_e'(instr[6:0]);
|
||||
funct3 = instr[14:12];
|
||||
funct7 = instr[31:25];
|
||||
system_imm = instr[31:20];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue