Just trying to trigger release #1

Merged
S.D merged 13 commits from develop into master 2020-10-11 18:35:00 +00:00
Showing only changes of commit f89e28ab6d - Show all commits

View File

@ -143,7 +143,7 @@ func TestSkipIfRegistersEqual(t *testing.T) {
func TestSetRegisterTo(t *testing.T) { func TestSetRegisterTo(t *testing.T) {
cpu := Chip8{opcode: 0x0824} cpu := Chip8{opcode: 0x0824}
cpu.setRegisterTo() cpu.setRegisterTo()
if cpu.registers[8] != 24 { if cpu.registers[8] != 0x24 {
t.Errorf("Register 8 is %d wanted %d", cpu.registers[8], 24) t.Errorf("Register 8 is %d wanted %d", cpu.registers[8], 0x24)
} }
} }