Skip to content

Commit

Permalink
[rtl] comment typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Jan 10, 2025
1 parent 2d00e4f commit f2b06ed
Showing 1 changed file with 2 additions and 2 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 @@ -753,8 +753,8 @@ begin

-- memory fence operations (execute even if illegal funct3) --
when opcode_fence_c =>
ctrl_nxt.if_fence <= exe_engine.ir(instr_funct3_lsb_c); -- fence
ctrl_nxt.lsu_fence <= not exe_engine.ir(instr_funct3_lsb_c); -- fence.i
ctrl_nxt.if_fence <= exe_engine.ir(instr_funct3_lsb_c); -- fence.i
ctrl_nxt.lsu_fence <= not exe_engine.ir(instr_funct3_lsb_c); -- fence
exe_engine_nxt.state <= EX_RESTART; -- reset instruction fetch + IPB (actually only required for fence.i)

-- FPU: floating-point operations --
Expand Down

0 comments on commit f2b06ed

Please sign in to comment.