mirror of
https://github.com/cc65/cc65.git
synced 2025-02-03 22:32:24 +00:00
Change debug file format
git-svn-id: svn://svn.cc65.org/cc65/trunk@2541 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
64245fde95
commit
3085e7583e
@ -217,10 +217,10 @@ void PrintDbgSyms (ObjData* O, FILE* F)
|
||||
|
||||
/* Emit the debug file line */
|
||||
fprintf (F,
|
||||
"sym\t\"%s\", 0x%02X, 0x%08lX\n",
|
||||
"sym\t\"%s\", %08lX, %s\n",
|
||||
GetString (D->Name),
|
||||
D->Type,
|
||||
Val);
|
||||
Val,
|
||||
IS_EXP_LABEL (D->Type)? "label" : "equate");
|
||||
|
||||
/* Insert the symbol into the table */
|
||||
InsertDbgSym (D, Val);
|
||||
|
Loading…
x
Reference in New Issue
Block a user