The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: meetecho on January 26, 2011, 01:23:10 AM

Title: How to put nextline on MASM615?
Post by: meetecho on January 26, 2011, 01:23:10 AM
Help me :) If you have any sample code for masm programs with nextline can you guys share? thanks.
Title: Re: How to put nextline on MASM615?
Post by: dedndave on January 26, 2011, 02:19:29 AM
print chr$(13,10)
Title: Re: How to put nextline on MASM615?
Post by: disintx on January 26, 2011, 03:56:52 AM
Or in a string define

szString db "String", 13,10,0