NASM - The Netwide Assembler

NASM Forum => Using NASM => Topic started by: nobody on December 05, 2008, 12:33:55 PM

Title: New line
Post 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
Title: Re: New line
Post by: nobody on December 06, 2008, 08:36:18 AM
db 'Hello',$0A,$0D,'word',0
Title: Re: New line
Post by: nobody on December 07, 2008, 01:33:34 AM
thanks...WORKED!!