Remove debugging printf's
git-svn-id: svn://svn.cc65.org/cc65/trunk@2009 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1121,11 +1121,9 @@ void WriteImports (void)
|
|||||||
*/
|
*/
|
||||||
S = SymList;
|
S = SymList;
|
||||||
while (S) {
|
while (S) {
|
||||||
printf ("%s: %04X - ", S->Name, S->Flags);
|
|
||||||
if ((S->Flags & (SF_TRAMPOLINE | SF_IMPORT)) == SF_IMPORT &&
|
if ((S->Flags & (SF_TRAMPOLINE | SF_IMPORT)) == SF_IMPORT &&
|
||||||
(S->Flags & (SF_REFERENCED | SF_FORCED)) != 0) {
|
(S->Flags & (SF_REFERENCED | SF_FORCED)) != 0) {
|
||||||
|
|
||||||
printf ("imported\n");
|
|
||||||
if (S->Flags & SF_ZP) {
|
if (S->Flags & SF_ZP) {
|
||||||
ObjWrite8 (IMP_ZP);
|
ObjWrite8 (IMP_ZP);
|
||||||
} else {
|
} else {
|
||||||
@@ -1133,8 +1131,6 @@ void WriteImports (void)
|
|||||||
}
|
}
|
||||||
ObjWriteStr (S->Name);
|
ObjWriteStr (S->Name);
|
||||||
ObjWritePos (&S->Pos);
|
ObjWritePos (&S->Pos);
|
||||||
} else {
|
|
||||||
printf ("ignored\n");
|
|
||||||
}
|
}
|
||||||
S = S->List;
|
S = S->List;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user