home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
inne
/
podstawy
/
os2
/
ssaver
/
ssaver23.exe
/
SAMPLE.ZIP
/
bccdll0.asm
next >
Wrap
Assembly Source File
|
1995-02-27
|
360b
|
22 lines
.386
_TEXT segment dword use32 public 'CODE' ;size is 20
_TEXT ends
_DATA segment dword use32 public 'DATA' ;size is 0
__os2hmod dd 0
_DATA ends
FLAT group
public __os2hmod
extrn _DLL_InitTerm
; public _text
_TEXT segment
MODEL OS2 FLAT
.startup
_textstart:
mov eax, 4[esp]
mov [__os2hmod], eax
mov eax, 1
ret
_TEXT ends
end