Added new options and info file attribute to set the columns where the

fields of the disassembled output start.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3703 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2006-01-30 21:03:14 +00:00
parent 01458275cb
commit cfca3473b8
8 changed files with 240 additions and 53 deletions

View File

@@ -59,7 +59,7 @@
static void Mnemonic (const char* M)
/* Indent and output a mnemonic */
{
Indent (MIndent);
Indent (MCol);
Output ("%s", M);
}
@@ -79,7 +79,7 @@ static void OneLine (const OpcDesc* D, const char* Arg, ...)
va_start (ap, Arg);
xvsprintf (Buf, sizeof (Buf), Arg, ap);
va_end (ap);
Indent (AIndent);
Indent (ACol);
Output (Buf);
/* Add the code stuff as comment */