forked from StarWolf3000/vasm-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_bin.c
117 lines (97 loc) · 2.77 KB
/
output_bin.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* 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 (; pc<ULLTADDR(s->org); 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; 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);
}
}
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