home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 13
/
CDA13.ISO
/
cdactual
/
demobin
/
share
/
program
/
Asm
/
ASM.ZIP
/
HELLO.ASM
< prev
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
|
1990-01-22
|
277 b
|
8 lines
mov ah, 09h ;output string function.
mov dx, offset msg ;address our message buffer.
int 21h ;call DOS to write the message.
mov ah, 00h ;terminate program function.
int 21h ;call DOS to terminate.
msg db 'PIRANHA INTERNATIONAL.$';the message to write.