Added if statements and bitwise operations

This commit is contained in:
cannoli-fruit 2026-07-27 21:33:33 -04:00
commit 848a01ff7d
6 changed files with 116 additions and 0 deletions

View file

@ -248,6 +248,24 @@ macro St64 dst, addr
db addr
end macro
macro AndR64 dst, src
db 0x79
db dst
db src
end macro
macro OrR64 dst, src
db 0x7A
db dst
db src
end macro
macro XorR64 dst, src
db 0x7B
db dst
db src
end macro
macro AddR64 dst, src
db 0x6E
db dst