mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-01-12 20:28:31 +00:00
7 lines
187 B
ArmAsm
7 lines
187 B
ArmAsm
main:
|
|
movq %rax, %rdx # rax is src, rdx is dest
|
|
cmp %rax, %rdx # rax is src2, rdx is src1
|
|
jmp func # func is label
|
|
notq %rax # rax is dest (and src)
|
|
ret # No argument
|