1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-02 06:56:39 +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:
cuz 2003-10-17 00:38:01 +00:00
parent 64245fde95
commit 3085e7583e

View File

@ -217,10 +217,10 @@ void PrintDbgSyms (ObjData* O, FILE* F)
/* Emit the debug file line */ /* Emit the debug file line */
fprintf (F, fprintf (F,
"sym\t\"%s\", 0x%02X, 0x%08lX\n", "sym\t\"%s\", %08lX, %s\n",
GetString (D->Name), GetString (D->Name),
D->Type, Val,
Val); IS_EXP_LABEL (D->Type)? "label" : "equate");
/* Insert the symbol into the table */ /* Insert the symbol into the table */
InsertDbgSym (D, Val); InsertDbgSym (D, Val);