ReC98/libs/BorlandC/abort.asm

14 lines
161 B
NASM
Raw Normal View History

; void abort(void)
_abort proc DIST
push si
push di
mov ax, 16h
push ax
nopcall raise
pop cx
nopcall __abort
pop di
pop si
ret
_abort endp