/* output_bin.c binary output driver for vasm */ /* (c) in 2002-2009,2013,2015,2017 by Volker Barthelmann and Frank Wille */ #include "vasm.h" #ifdef OUTBIN static char *copyright="vasm binary output module 1.8a (c) 2002-2009,2013,2015,2017 Volker Barthelmann"; #define BINFMT_RAW 0 #define BINFMT_CBMPRG 1 /* Commodore VIC-20/C-64 PRG format */ static int binfmt = BINFMT_RAW; static int orgcmp(const void *sec1,const void *sec2) { if (ULLTADDR((*(section **)sec1)->org) > ULLTADDR((*(section **)sec2)->org)) return 1; if (ULLTADDR((*(section **)sec1)->org) < ULLTADDR((*(section **)sec2)->org)) return -1; return 0; } static void write_output(FILE *f,section *sec,symbol *sym) { section *s,*s2,**seclist,**slp; atom *p; size_t nsecs; unsigned long long pc,npc,i; if (!sec) return; for (; sym; sym=sym->next) { if (sym->type == IMPORT) output_error(6,sym->name); /* undefined symbol */ } /* we don't support overlapping sections */ for (s=sec,nsecs=0; s!=NULL; s=s->next) { for (s2=s->next; s2; s2=s2->next) { if (((ULLTADDR(s2->org) >= ULLTADDR(s->org) && ULLTADDR(s2->org) < ULLTADDR(s->pc)) || (ULLTADDR(s2->pc) > ULLTADDR(s->org) && ULLTADDR(s2->pc) <= ULLTADDR(s->pc)))) output_error(0); } nsecs++; } /* make an array of section pointers, sorted by their start address */ seclist = (section **)mymalloc(nsecs * sizeof(section *)); for (s=sec,slp=seclist; s!=NULL; s=s->next) *slp++ = s; if (nsecs > 1) qsort(seclist,nsecs,sizeof(section *),orgcmp); if (binfmt == BINFMT_CBMPRG) { /* Commodore 6502 PRG header: * 00: LSB of load address * 01: MSB of load address */ fw8(f,sec->org&0xff); fw8(f,(sec->org>>8)&0xff); } for (slp=seclist; nsecs>0; nsecs--) { s = *slp++; if (s!=seclist[0] && ULLTADDR(s->org)>pc) { /* fill gap between sections with zeros */ for (; pcorg); pc++) fw8(f,0); } else pc = ULLTADDR(s->org); for (p=s->first; p; p=p->next) { npc = ULLTADDR(fwpcalign(f,p,s,pc)); if (p->type == DATA) { for (i=0; icontent.db->size; i++) fw8(f,(unsigned char)p->content.db->data[i]); } else if (p->type == SPACE) { fwsblock(f,p->content.sb); } pc = npc + atom_size(p,s,npc); } } free(seclist); } static int output_args(char *p) { if (!strcmp(p,"-cbm-prg")) { binfmt = BINFMT_CBMPRG; return 1; } return 0; } int init_output_bin(char **cp,void (**wo)(FILE *,section *,symbol *),int (**oa)(char *)) { *cp = copyright; *wo = write_output; *oa = output_args; return 1; } #else int init_output_bin(char **cp,void (**wo)(FILE *,section *,symbol *),int (**oa)(char *)) { return 0; } #endif