2020-09-30 16:53:55 +02:00

25 lines
491 B
NASM

; 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