Fragment cleanup, more string pool use

git-svn-id: svn://svn.cc65.org/cc65/trunk@2201 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-06-06 06:50:27 +00:00
parent c5255302db
commit 0aa75f12d6
11 changed files with 64 additions and 140 deletions

View File

@@ -238,7 +238,6 @@ Section* ReadSection (FILE* F, ObjData* O)
unsigned char Type = Read8 (F);
/* Extract the check mask from the type */
unsigned char Check = Type & FRAG_CHECKMASK;
unsigned char Bytes = Type & FRAG_BYTEMASK;
Type &= FRAG_TYPEMASK;
@@ -268,18 +267,6 @@ Section* ReadSection (FILE* F, ObjData* O)
return 0;
}
/* A list of check expressions may follow */
if (Check) {
/* Read the number of expressions that follow */
unsigned Count = ReadVar (F);
/* Read the expressions */
while (Count--) {
/* ### */
}
}
/* Read the file position of the fragment */
ReadFilePos (F, &Frag->Pos);