home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
progjorn
/
pj_7_2.arc
/
CINIT.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-02-26
|
587b
|
27 lines
; CINIT.asm
; the assembler source module containing the initialization entry
; for CDLL.DLL
;
; By Ray Duncan
;
extrn C_INIT:far
_TEXT segment word public 'CODE'
î assume cs:_TEXT
INIT proc far ; initialization routine
call C_INIT ; call C routine to
; do the actual work
ret ; back to caller with
; AX = status code
; ("value" from C_INIT)
INIT endp
_TEXT ends
end INIT