mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 04:56:47 +08:00
10 lines
231 B
ArmAsm
10 lines
231 B
ArmAsm
/* The purpose of this program is to crash due to not manipulating the
|
|
stack in multiples of 16.
|
|
*/
|
|
.global main
|
|
.text
|
|
.align 2
|
|
|
|
main: str x30, [sp, -8]!
|
|
ldr x30, [sp], 8
|
|
ret
|