News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

How to insert tab chars

Started by indiocolifa, September 21, 2005, 06:41:05 AM

Previous topic - Next topic

indiocolifa

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.

indiocolifa


Evenbit

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.