The MASM Forum Archive 2004 to 2012

Project Support Forums => HLA Forum => Topic started by: indiocolifa on September 21, 2005, 06:41:05 AM

Title: How to insert tab chars
Post by: indiocolifa on September 21, 2005, 06:41:05 AM
How I can insert tab characters to display aligned columns of data...

This is because I want to list an assembly display for my 6502 monitor, e.g:

0000    XX                       NOP
0000    XX    XX     XX       LDA ($235F),X

....

Thank you very much.
Title: Re: How to insert tab chars
Post by: indiocolifa on September 21, 2005, 07:48:00 AM
Done it.... stdio.tab does the job!  :U
Title: Re: How to insert tab chars
Post by: Evenbit on September 22, 2005, 01:33:12 PM
I believe you can save yourself some typing by using #9 whereever you want the tab.

stdout.put( #9 ); //gives me a TAB
stdout.put( #235 ); //gives me a Greek letter
stdout.put( #7 ); //makes a BEEP sound

Nathan.