mirror of
https://github.com/elliotnunn/NetBoot.git
synced 2024-12-22 16:30:08 +00:00
142 lines
3.5 KiB
C
142 lines
3.5 KiB
C
/* output_bin.c binary output driver for vasm */
|
|
/* (c) in 2002-2009,2013-2019 by Volker Barthelmann and Frank Wille */
|
|
|
|
#include "vasm.h"
|
|
|
|
#ifdef OUTBIN
|
|
static char *copyright="vasm binary output module 1.9a (c) 2002-2009,2013-2020 Volker Barthelmann";
|
|
|
|
#define BINFMT_RAW 0
|
|
#define BINFMT_CBMPRG 1 /* Commodore VIC-20/C-64 PRG format */
|
|
#define BINFMT_ATARICOM 2 /* Atari 800 DOS COM 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);
|
|
}
|
|
|
|
if (binfmt == BINFMT_ATARICOM) {
|
|
/* ATARI COM header: $FFFF */
|
|
fw8(f,0xff);
|
|
fw8(f,0xff);
|
|
}
|
|
|
|
for (slp=seclist; nsecs>0; nsecs--) {
|
|
s = *slp++;
|
|
|
|
if (binfmt==BINFMT_ATARICOM) {
|
|
/* for each section start with load address
|
|
* 00: LSB of load address
|
|
* 01: MSB of load address
|
|
*/
|
|
fw8(f,s->org&0xff);
|
|
fw8(f,(s->org>>8)&0xff);
|
|
|
|
/* for each section followed by last byte address
|
|
* 00: LSB of last byte address
|
|
* 01: MSB of last byte address
|
|
*/
|
|
fw8(f,(s->pc-1)&0xff);
|
|
fw8(f,((s->pc-1)>>8)&0xff);
|
|
}
|
|
|
|
if (s!=seclist[0] && ULLTADDR(s->org)>pc && binfmt!=BINFMT_ATARICOM) {
|
|
/* fill gap between sections with pad-bytes */
|
|
fwalignpattern(f,ULLTADDR(s->org)-pc,s->pad,s->padbytes);
|
|
}
|
|
|
|
for (p=s->first,pc=ULLTADDR(s->org); p; p=p->next) {
|
|
npc = ULLTADDR(fwpcalign(f,p,s,pc));
|
|
if (p->type == DATA) {
|
|
for (i=0; i<p->content.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);
|
|
}
|
|
}
|
|
myfree(seclist);
|
|
}
|
|
|
|
|
|
static int output_args(char *p)
|
|
{
|
|
if (!strcmp(p,"-cbm-prg")) {
|
|
binfmt = BINFMT_CBMPRG;
|
|
return 1;
|
|
} else if (!strcmp(p,"-atari-com")) {
|
|
binfmt = BINFMT_ATARICOM;
|
|
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
|