NASM - The Netwide Assembler
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
Home
Help
Search
Calendar
Login
Register
NASM - The Netwide Assembler
»
NASM Forum
»
Using NASM
»
New line
« previous
next »
Print
Pages: [
1
]
Author
Topic: New line (Read 16247 times)
nobody
Guest
New line
«
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
Logged
nobody
Guest
Re: New line
«
Reply #1 on:
December 06, 2008, 08:36:18 AM »
db 'Hello',$0A,$0D,'word',0
Logged
nobody
Guest
Re: New line
«
Reply #2 on:
December 07, 2008, 01:33:34 AM »
thanks...WORKED!!
Logged
Print
Pages: [
1
]
« previous
next »
NASM - The Netwide Assembler
»
NASM Forum
»
Using NASM
»
New line