Implemented bitwise operations

This commit is contained in:
2024-07-25 14:17:51 +02:00
parent b8900b518a
commit d1a8f0d66c
12 changed files with 287 additions and 5 deletions

View File

@ -32,10 +32,13 @@ var programs = []struct {
{"branch-and", "", "", 0},
{"branch-or", "", "", 0},
{"branch-both", "", "", 0},
{"bitwise-and", "", "", 0},
{"bitwise-or", "", "", 0},
{"bitwise-xor", "", "", 0},
{"remainder", "", "", 0},
{"jump-near", "", "", 0},
{"loop", "", "", 0},
{"loop-lifetime", "", "", 0},
{"remainder", "", "", 0},
}
func TestPrograms(t *testing.T) {