windows-nt/Source/XPSP1/NT/base/mvdm/wow16/wifeman/libentry.asm

25 lines
467 B
NASM
Raw Normal View History

2020-09-26 03:20:57 -05:00
; LIBENTRY.ASM -- Entry point for library modules (small model)
; -------------------------------------------------------------
Extrn LibMain:Near
_TEXT SEGMENT BYTE PUBLIC 'CODE'
ASSUME CS:_TEXT
PUBLIC LibEntry
LibEntry proc far
push di
push ds
push cx
push es
push si
call LibMain
ret
LibEntry endp
_TEXT ENDS
end LibEntry