Oct 21st, 2000, 01:15 AM
For some reason, it wont print the string, but it will wait for the key press, and exit to DOS.
Title1 db "Hello$"
start:
mov ah, 9
mov dx, OFFSET Title1
int 21h
;Wait for key
mov ah, 0
int 16h
;Exit to DOS
mov ax, 4c00h
int 21h
end start
By the way, im using the A86 compiler.
Title1 db "Hello$"
start:
mov ah, 9
mov dx, OFFSET Title1
int 21h
;Wait for key
mov ah, 0
int 16h
;Exit to DOS
mov ax, 4c00h
int 21h
end start
By the way, im using the A86 compiler.