@@ -47,7 +47,7 @@ module ibex_controller #(
4747 input logic instr_exec_i, // Execution control, when clear ID/EX
4848 // stage stops accepting instructions from
4949 // IF
50- // to prefetcher
50+ // to prefetch
5151 output logic instr_req_o, // start fetching instructions
5252 output logic pc_set_o, // jump to address set by pc_mux
5353 output ibex_pkg :: pc_sel_e pc_mux_o, // IF stage fetch address selector
@@ -76,7 +76,7 @@ module ibex_controller #(
7676 input logic irq_pending_i, // interrupt request pending
7777 input ibex_pkg :: irqs_t irqs_i, // interrupt requests qualified with
7878 // mie CSR
79- input logic irq_nm_ext_i, // non-maskeable interrupt
79+ input logic irq_nm_ext_i, // non-maskable interrupt
8080 output logic nmi_mode_o, // core executing NMI handler
8181
8282 // debug signals
@@ -248,7 +248,7 @@ module ibex_controller #(
248248
249249 // Note that with the writeback stage store/load errors occur on the instruction in writeback,
250250 // all other exception/faults occur on the instruction in ID/EX. The faults from writeback
251- // must take priority as that instruction is architecurally ordered before the one in ID/EX.
251+ // must take priority as that instruction is architecturally ordered before the one in ID/EX.
252252 if (store_err_q) begin
253253 store_err_prio = 1'b1 ;
254254 end else if (load_err_q) begin
@@ -317,7 +317,7 @@ module ibex_controller #(
317317
318318 assign entering_nmi = nmi_mode_d & ~ nmi_mode_q;
319319
320- // Load integerity error internal interrupt
320+ // Load integrity error internal interrupt
321321 always_comb begin
322322 mem_resp_intg_err_addr_d = mem_resp_intg_err_addr_q;
323323 mem_resp_intg_err_irq_set = 1'b0 ;
@@ -428,7 +428,7 @@ module ibex_controller #(
428428
429429 // Record the debug cause outside of the FSM
430430 // The decision to enter debug_mode and the write of the cause to DCSR happen
431- // in seperate steps within the FSM. Hence, there are a small number of cycles
431+ // in separate steps within the FSM. Hence, there are a small number of cycles
432432 // where a change in external stimulus can cause the cause to be recorded incorrectly.
433433 assign debug_cause_d = trigger_match_i ? DBG_CAUSE_TRIGGER :
434434 ebrk_insn_prio & ebreak_into_debug ? DBG_CAUSE_EBREAK :
@@ -935,7 +935,7 @@ module ibex_controller #(
935935 debug_mode_d != debug_mode_q | - > flush_id_o & pc_set_o)
936936
937937 `ifdef RVFI
938- // Workaround for internal verilator error when using hierarchical refers to calcuate this
938+ // Workaround for internal verilator error when using hierarchical refers to calculate this
939939 // directly in ibex_core
940940 logic rvfi_flush_next;
941941
0 commit comments