Added if statements and bitwise operations
This commit is contained in:
parent
1140b5b140
commit
848a01ff7d
6 changed files with 116 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue