mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
467 B
24 lines
467 B
; 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
|