714dd74636
git-svn-id: svn://10.65.10.50/trunk@5350 c028cbd2-c16b-5b4b-a496-9718f37d4682
20 lines
462 B
NASM
Executable File
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
|