From 64e475c40c473666f53389e308929fb737fc7d84 Mon Sep 17 00:00:00 2001 From: Jared Date: Fri, 30 Jan 2026 00:42:43 -0500 Subject: [PATCH] small docs corrections --- rtl/serv_compdec.v | 2 +- rtl/serv_decode.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/serv_compdec.v b/rtl/serv_compdec.v index a55e445..380461a 100644 --- a/rtl/serv_compdec.v +++ b/rtl/serv_compdec.v @@ -178,7 +178,7 @@ module serv_compdec case (i_instr[15:14]) 2'b00: begin // c.slli -> slli rd, rd, shamt - // (c.ssli hints are translated into a slli hint) + // (c.slli hints are translated into a slli hint) comp_instr = {7'b0, i_instr[6:2], i_instr[11:7], 3'b001, i_instr[11:7], {OPCODE_OP_IMM}}; end diff --git a/rtl/serv_decode.v b/rtl/serv_decode.v index 38bcb8e..5a9c34c 100644 --- a/rtl/serv_decode.v +++ b/rtl/serv_decode.v @@ -133,7 +133,7 @@ module serv_decode wire co_sh_right = funct3[2]; wire co_bne_or_bge = funct3[0]; - //Matches system ops except eceall/ebreak/mret + //Matches system ops except ecall/ebreak/mret wire csr_op = opcode[4] & opcode[2] & (|funct3);