ack/mach/m65oo2/libsys/cleanup.s

10 lines
150 B
ArmAsm
Raw Permalink Normal View History

2024-02-22 15:13:52 +00:00
.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