cpu: implement SB/SH/SW

This commit is contained in:
mappu 2022-12-28 14:34:34 +13:00
parent 4654a5bc72
commit 2864b16817
1 changed files with 30 additions and 1 deletions

31
cpu.go
View File

@ -238,7 +238,36 @@ func (c *CPUState) Step() error {
case 0b0100011:
// SB/SH/SW
panic("todo")
imm := ((opcode >> 7) & 0b11111) | (((opcode >> 25) & 0b1111111) << 5)
memAddr := c.Registers[opcode_rs1(opcode)] + imm
// The SW, SH, and SB instructions store 32-bit, 16-bit, and 8-bit values from the low bits of register
// rs2 to memory.
funct3 := (opcode >> 12) & 0b111
switch funct3 {
case 0b000:
// SB
err := c.w.WriteByte(memAddr, byte(c.Registers[opcode_rs2(opcode)]))
if err != nil {
return err
}
case 0b001:
// SH
err := c.w.Write16(memAddr, uint16(c.Registers[opcode_rs2(opcode)]))
if err != nil {
return err
}
case 0b010:
// SW
err := c.w.Write32(memAddr, c.Registers[opcode_rs2(opcode)])
if err != nil {
return err
}
default:
return ErrInvalidOpcode{}
}
case 0b0010011:
// ADDI/SLTI/SLTIU/XORI/ORI/ANDI/SLLI/SLRI/SRAI