finished first row of opcodes

This commit is contained in:
radumacocian
2025-06-30 15:58:53 +02:00
parent eddfb7a0c6
commit 0f4a97bbf2
6 changed files with 105 additions and 31 deletions

View File

@@ -4,9 +4,9 @@ import (
"testing"
)
func TestShift(t *testing.T) {
func TestShiftLeft(t *testing.T) {
r1 := byte(0b01010101)
Shift(&r1)
ShiftLeft(&r1)
expected := byte(0b10101010)
actual := r1
@@ -15,3 +15,15 @@ func TestShift(t *testing.T) {
t.Errorf("actual %x != expected %x", actual, expected)
}
}
func TestShiftRight(t *testing.T) {
r1 := byte(0b01010101)
ShiftLeft(&r1)
expected := byte(0b00101010)
actual := r1
if actual != expected {
t.Errorf("actual %x != expected %x", actual, expected)
}
}