1
0
mirror of https://github.com/olofk/serv.git synced 2026-02-27 16:52:43 +00:00

small docs corrections

This commit is contained in:
Jared
2026-01-30 00:42:43 -05:00
committed by Olof Kindgren
parent 2311403691
commit 64e475c40c
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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);