mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 07:46:47 +08:00
6 lines
No EOL
122 B
ArmAsm
6 lines
No EOL
122 B
ArmAsm
// Assume value of a is in x0
|
|
// Assume value of b is in x1
|
|
cmp x0, x1
|
|
ble 1f
|
|
// CODE BLOCK
|
|
1: |