campo-sirio/al/misc/alstub.asm
alex 714dd74636 Archive Library versione 2.00
git-svn-id: svn://10.65.10.50/trunk@5350 c028cbd2-c16b-5b4b-a496-9718f37d4682
1997-10-09 16:09:54 +00:00

20 lines
462 B
NASM
Executable File

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