10 lines
150 B
ArmAsm
10 lines
150 B
ArmAsm
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
|
|
.define __cleanup
|
|
.extern __cleanup
|
|
__cleanup:
|
|
push bp
|
|
mov bp,sp
|
|
mov sp,bp
|
|
pop bp
|
|
ret
|