pcs/xli/glue_llc.asm

32 lines
658 B
NASM
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

page 84,120
dgroup group data
pgroup group _prog
data segment word public 'DATA'
extrn _psp:dword,_tsize:dword
extrn xwait:dword,xbye:dword
data ends
_prog segment byte public '_PROG'
assume cs:pgroup,ds:dgroup
public xli_wait,xli_bye
xli_wait proc far
push word ptr _psp+2
push word ptr _tsize
call dword ptr [xwait]
pop ax
pop ax
ret
xli_wait endp
xli_bye proc far
call dword ptr [xbye]
xli_bye endp
_prog ends
end