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

@@ -192,9 +192,9 @@ unsigned AddrTable (void)
/* OOPS! Should not happen */
Internal ("OOPS - Label for address 0x%06X disappeard!", Addr);
}
Indent (MIndent);
Indent (MCol);
Output (".addr");
Indent (AIndent);
Indent (ACol);
Output ("%s", Label);
LineComment (PC, 2);
LineFeed ();
@@ -257,9 +257,9 @@ unsigned RtsTable (void)
/* OOPS! Should not happen */
Internal ("OOPS - Label for address 0x%06X disappeard!", Addr);
}
Indent (MIndent);
Indent (MCol);
Output (".word");
Indent (AIndent);
Indent (ACol);
Output ("%s-1", Label);
LineComment (PC, 2);
LineFeed ();
@@ -312,9 +312,9 @@ unsigned TextTable (void)
/* If we have text, output it */
if (Count > 0) {
unsigned CBytes;
Indent (MIndent);
Indent (MCol);
Output (".byte");
Indent (AIndent);
Indent (ACol);
Output ("\"");
for (I = 0; I < Count; ++I) {
Output ("%c", GetCodeByte (PC+I));