ReC98/libs/BorlandC/errormsg.asm

35 lines
516 B
NASM

; void __ErrorMessage(const char *msg)
public ___ErrorMessage
___ErrorMessage proc
@@msg = DPTR_ 2 + dPtrSize
push bp
mov bp, sp
push si
push di
if LDATA
push word ptr [bp+@@msg+2]
push word ptr [bp+@@msg]
nopcall _strlen
pop cx
else
push [bp+@@msg]
call _strlen
endif
pop cx
push ax
if LDATA
push word ptr [bp+@@msg+2]
endif
push word ptr [bp+@@msg]
mov al, stderr.fd
cbw
push ax
nopcall __rtl_write
add sp, 4 + dPtrSize
pop di
pop si
pop bp
ret
___ErrorMessage endp