X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=sect.c;h=7331cb3d765c4e867ce727cb39bce3b9e0c711d1;hp=1ff54b4075e50a1d0274a355546fd089f4f00480;hb=d0c28c349ddfb8393568037f68bddbe8979ce0df;hpb=3f2bccb78ab4cd59654d521c8aedfe5512ee6608 diff --git a/sect.c b/sect.c index 1ff54b4..7331cb3 100644 --- a/sect.c +++ b/sect.c @@ -3,7 +3,7 @@ // SECT.C - Code Generation, Fixups and Section Management // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 -// Source Utilised with the Kind Permission of Landon Dyer +// Source utilised with the kind permission of Landon Dyer // #include "sect.h" @@ -80,10 +80,10 @@ void InitSection(void) MakeSection(i, 0); // Construct default sections, make TEXT the current section - MakeSection(ABS, SUSED | SABS | SBSS); // ABS - MakeSection(TEXT, SUSED | TEXT ); // TEXT - MakeSection(DATA, SUSED | DATA ); // DATA - MakeSection(BSS, SUSED | BSS | SBSS); // BSS + MakeSection(ABS, SUSED | SABS | SBSS); // ABS + MakeSection(TEXT, SUSED | TEXT ); // TEXT + MakeSection(DATA, SUSED | DATA ); // DATA + MakeSection(BSS, SUSED | BSS | SBSS); // BSS // MakeSection(M6502, SUSED | TEXT ); // 6502 code section // Switch to TEXT for starters @@ -287,18 +287,21 @@ int AddFixup(WORD attr, LONG loc, TOKEN * fexpr) // NYAN ! if ((attr & FUMASKRISC) == FU_JR) { +//printf("AddFixup: ((attr & FUMASKRISC) == FU_JR)\n"); // i = 18; // i = FIXUP_BASE_SIZE + (sizeof(LONG) * 2); i = FIXUP_BASE_SIZE + sizeof(SYM *) + sizeof(LONG); } else { +//printf("AddFixup: ((attr & FUMASKRISC) == FU_JR) ELSE\n"); // i = 14; i = FIXUP_BASE_SIZE + sizeof(SYM *); } } else { +//printf("AddFixup: !SYMBOL\n"); attr |= FU_EXPR; for(len=0; fexpr[len]!=ENDEXPR; len++) @@ -312,7 +315,7 @@ int AddFixup(WORD attr, LONG loc, TOKEN * fexpr) i = FIXUP_BASE_SIZE + sizeof(WORD) + (len * sizeof(TOKEN)); } - // Maybe alloc another fixup chunk for this one to fit in + // Alloc another fixup chunk for this one to fit in if necessary if ((fchalloc - fchsize) < i) { p = §[cursect]; @@ -360,6 +363,7 @@ int AddFixup(WORD attr, LONG loc, TOKEN * fexpr) { // *fchptr.lp++ = (LONG)fexpr[1]; *fchptr.sy++ = symbolPtr[fexpr[1]]; +//printf("AddFixup: adding symbol (%s) [%08X]\n", symbolPtr[fexpr[1]]->sname, symbolPtr[fexpr[1]]->sattr); } // SCPCD : correct bit mask for attr (else other FU_xxx will match) NYAN ! @@ -402,17 +406,17 @@ int ResolveAllFixups(void) // int ResolveFixups(int sno) { - PTR fup; // Current fixup - WORD * fuend; // End of last fixup (in this chunk) - WORD w; // Fixup word (type+modes+flags) - char * locp; // Location to fix (in cached chunk) - LONG loc; // Location to fixup - VALUE eval; // Expression value - WORD eattr; // Expression attrib - SYM * esym; // External symbol involved in expr - SYM * sy; // (Temp) pointer to a symbol - WORD i; // (Temp) word - WORD tdb; // eattr & TDB + PTR fup; // Current fixup + WORD * fuend; // End of last fixup (in this chunk) + WORD w; // Fixup word (type+modes+flags) + char * locp; // Location to fix (in cached chunk) + LONG loc; // Location to fixup + VALUE eval; // Expression value + WORD eattr; // Expression attrib + SYM * esym; // External symbol involved in expr + SYM * sy; // (Temp) pointer to a symbol + WORD i; // (Temp) word + WORD tdb; // eattr & TDB LONG oaddr; int reg2; WORD flags; @@ -895,7 +899,8 @@ DEBUG { printf("ResolveFixups: cfileno=%u\n", cfileno); } break; default: - interror(4); // Bad fixup type + // Bad fixup type--this should *never* happen! + interror(4); // NOTREACHED } continue;