ack/mach/m65oo2/libsys/abort.s

14 lines
186 B
ArmAsm
Raw Normal View History

2024-02-22 15:13:52 +00:00
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define _abort
.extern _abort
_abort: push si
push di
push bp
mov bp,sp
int 128
mov sp,bp
pop bp
pop di
pop si
ret