Implemented bitwise operations

This commit is contained in:
Eduard Urbach 2024-07-25 14:17:51 +02:00
parent f68c50247f
commit a7d8d6ae20
Signed by: eduard
GPG key ID: 49226B848C78F6C8
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) {