X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=sect.h;h=d64e130ee32b87ff30f327c5915eca60bd418190;hp=d86056d33372df357fa664a770f9b8e22d0cc174;hb=d0c28c349ddfb8393568037f68bddbe8979ce0df;hpb=b10167d55798ea184f97fafda075255c0852f3b6 diff --git a/sect.h b/sect.h index d86056d..d64e130 100644 --- a/sect.h +++ b/sect.h @@ -3,7 +3,7 @@ // SECT.H - 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 // #ifndef __SECT_H__ @@ -25,6 +25,9 @@ //#define D_rlong(lw) {*chptr++=(char)(lw>>16);*chptr++=(char)(lw>>24);\ // *chptr++=(char)lw;*chptr++=(char)(lw>>8); \ // sloc+=4; ch_size += 4;if(orgactive) orgaddr += 4;} +// Fill n bytes with zeroes +#define D_ZEROFILL(n) {memset(chptr, 0, n); chptr+=n; sloc+=n; ch_size+=n;\ + if (orgactive) orgaddr+=n;} #define NSECTS 16 // Max. number of sections @@ -64,14 +67,15 @@ #define FU_PCREL 020 // Subtract PC first #define FU_EXPR 040 // Expression (not symbol) follows +#define FUMASKRISC 0x0F00 // Mask for RISC fixup cases #define FU_MOVEI 0x0100 #define FU_JR 0x0200 -//#define FU_MJR 0x0300 #define FU_REGONE 0x0400 #define FU_NUM15 0x0500 #define FU_NUM31 0x0600 #define FU_NUM32 0x0700 #define FU_REGTWO 0x0800 + #define FU_SUB32 0x1000 #define FU_ISBRA 0x2000 // Word forward fixup is a BRA or DBRA #define FU_LBRA 0x4000 // Long branch, for short branch detect @@ -120,10 +124,6 @@ MCHUNK { #define MCHEND 0x2000 // Indicates end of mark chunk #define MPCREL 0x1000 // Mark is PC-relative -//#define MAXFWDJUMPS 1024 // Maximum forward jumps to check -//extern unsigned fwdjump[MAXFWDJUMPS]; -//extern unsigned fwindex; - // Globals, external etc extern LONG sloc; extern WORD scattr; @@ -136,11 +136,11 @@ extern CHUNK * scode; // Prototypes void InitSection(void); -void switchsect(int); -void savsect(void); +void SwitchSection(int); +void SaveSection(void); int fixtest(int, LONG); int chcheck(LONG); -int fixup(WORD, LONG, TOKEN *); +int AddFixup(WORD, LONG, TOKEN *); int ResolveAllFixups(void); #endif // __SECT_H__