ack/mach/i86/libsys/abort.s

14 lines
186 B
ArmAsm
Raw Normal View History

1987-01-08 10:41:08 +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