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