home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Windows 95.com 1997 April
/
Win95_04974.iso
/
docs
/
00011
/
011b2.exe
/
MISC.ARJ
/
MISC
/
ALSTUB.ASM
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1996-04-19
|
462 b
|
20 lines
DOSSEG
.MODEL SMALL
.STACK 100h
.DATA
Message DB 13,10
DB 'This program requires Microsoft Windows.'
DB 13,10
DB 'Thank you for choosing Greenleaf.'
DB 13,10,'$'
.CODE
mov ax,@Data
mov ds,ax
mov ah,9
mov dx,offset Message
int 21h
mov ah,4ch
int 21h
END