07-01-2008, 07:15 PM
|
#12 (permalink)
|
|
The Gregarious
Join Date: Sep 2007
Posts: 563
Thanks: 15
|
Code:
; For Intel Assembler (MSDOS)
mov ax,cs
mov ds,ax
mov ah,9
mov dx, offset Hello
int 21h
xor ax,ax
int 21h
Hello:
db "AHHHHHHH!",13,10,"$"
__________________
There are two ways to write bug-free code, only the third one works.
|
|
|
|