NASM - The Netwide Assembler
NASM Forum => Using NASM => Topic started by: nobody on December 05, 2008, 12:33:55 PM
-
how do you print a new line?
lets say i have:
msg db 'Hello'
msg2 db 'World'
I can get it to print out:
Hello World
But would like to print:
Hello
World
-
db 'Hello',$0A,$0D,'word',0
-
thanks...WORKED!!