19 lines
266 B
ArmAsm
19 lines
266 B
ArmAsm
|
|
.globl crash1
|
||
|
|
crash1:
|
||
|
|
movl $0xa5a50000, %eax
|
||
|
|
movl $0xa5a50001, %ebx
|
||
|
|
movl $0xa5a50002, %ecx
|
||
|
|
|
||
|
|
movl $0, %edx
|
||
|
|
jmp *%edx
|
||
|
|
|
||
|
|
|
||
|
|
.globl crashnostack
|
||
|
|
crashnostack:
|
||
|
|
.cfi_startproc
|
||
|
|
movl %esp, %eax
|
||
|
|
.cfi_def_cfa_register %eax
|
||
|
|
movl $0, %esp
|
||
|
|
movl (%esp), %ebx
|
||
|
|
.cfi_endproc
|