forked from Arakula/f9dasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hex2bin.c
257 lines (221 loc) · 6.71 KB
/
hex2bin.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*****************************************************************************/
/* hex2bin - converts .hex file to .bin */
/*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#ifndef TYPES
#define TYPES
typedef unsigned char byte;
typedef unsigned short word;
#endif
#ifndef NULL
#define NULL 0
#endif
#ifndef FALSE
#define TRUE (1==1)
#define FALSE (!TRUE)
#endif
/*****************************************************************************/
/* Global Data */
/*****************************************************************************/
byte *memory = NULL;
byte *label = NULL;
char **lblnames = NULL;
char **commentlines = NULL;
static char *Options[]=
{
"out",
NULL
};
#define OPCODE(address) memory[address&0xffff]
#define ARGBYTE(address) memory[address&0xffff]
#define ARGWORD(address) (word)((memory[address&0xffff]<<8)|memory[(address+1)&0xffff])
#define ATTRBYTE(address) (label[address & 0xffff])
#define LABELTYPE(address) (ATTRBYTE(address) & 0x03)
#define LABELTYBE_ISLABEL (0x02)
#define LABEL_REFERENCED(address) ((ATTRBYTE(address) & 0x04) >> 2)
#define USEDBYTE(address) ((ATTRBYTE(address) & 0x80) >> 7)
#define AREATYPE(address) ((ATTRBYTE(address) & 0x78) >> 3)
#define AREATYPE_CODE 0x40
#define AREATYPE_DATA 0x20
#define AREATYPE_BINARY (AREATYPE_DATA | 0x10)
#define AREATYPE_WORD (AREATYPE_DATA | 0x08)
/*****************************************************************************/
/* usage : displays usage */
/*****************************************************************************/
void usage(void)
{
printf("* Usage: hex2bin [options] <filename>\n"
"* Available options are:\n"
"* -out - output file [stdout]\n");
exit(1);
}
/*****************************************************************************/
/* GetHex : retrieves a hex value in given length from file */
/*****************************************************************************/
int GetHex(FILE *f, int nChars)
{
int out = 0;
for (; nChars; nChars--)
{
int c = fgetc(f);
if (c == EOF)
return -1;
if ((c >= 'a') && (c <= 'f'))
c -= ('a' - 'A');
if ((!((c >= '0') && (c <= '9'))) &&
(!((c >= 'A') && (c <= 'F'))))
return -1;
c -= '0';
if (c > 9)
c -= 7;
out = out * 16 + c;
}
return out;
}
/*****************************************************************************/
/* IsHex : tries to load as an Intel HEX file */
/*****************************************************************************/
int IsHex(FILE *f, byte *memory, unsigned *pbegin, unsigned *pend)
{
int nCurPos = ftell(f);
int c = 0;
int nBytes = 0;
int begin = 0xffff;
int end = 0;
if ((c = fgetc(f)) == EOF) /* look whether starting with ':' */
return FALSE;
fseek(f, nCurPos, SEEK_SET);
if (c != ':')
return FALSE;
while ((nBytes >= 0) &&
(fread(&c, 1, 1, f))) /* while there are lines */
{
int nBytesOnLine, nAddr, i;
if (c != ':')
break;
nBytesOnLine = GetHex(f, 2); /* retrieve # bytes on line */
if (nBytesOnLine < 0) /* if error */
{ nBytes = -1; break; } /* return with error */
else if (nBytesOnLine == 0) /* if end of file */
break; /* just break; */
nAddr = GetHex(f,4); /* get address for bytes */
if ((nAddr < 0) || (nAddr >= 0x10000)) /* if illegal address */
{ nBytes = -1; break; } /* return with error */
if (nAddr < begin) /* adjust start and end values */
begin = nAddr;
if (nAddr + nBytesOnLine - 1 > end)
end = nAddr + nBytesOnLine - 1;
nBytes += nBytesOnLine;
c = GetHex(f, 2); /* skip a character */
for (i = 0; i < nBytesOnLine; i++) /* now get the bytes */
{
c = GetHex(f, 2); /* retrieve a byte */
if ((c < 0) || (c > 0xff)) /* if illegal byte */
{ nBytes = -1; break; } /* return with error */
memory[nAddr + i] = (byte)c; /* otherwise add memory byte */
ATTRBYTE(nAddr + i) |= 0x80; /* mark as used byte */
}
while (((c = fgetc(f)) != EOF) && /* skip to newline */
(c != '\r') && (c != '\n'))
;
while (((c = fgetc(f)) != EOF) && /* skip newline itself */
((c == '\r') || (c == '\n')))
;
if (c == ':')
fseek(f, ftell(f) - 1, SEEK_SET);
}
fseek(f, nCurPos, SEEK_SET);
if (nBytes >= 0)
{
*pbegin = begin;
*pend = end;
}
return (nBytes > 0); /* pass back #bytes interpreted */
}
/*****************************************************************************/
/* main : main program function */
/*****************************************************************************/
int main(int argc, char *argv[])
{
unsigned begin = 0,end = 0, offset = 0;
char *fname = NULL, *outname = NULL;
int load = -1;
int i, j, n;
int off;
FILE *f;
FILE *out = stdout;
printf("hex2bin: convert Intel .HEX to Binary\n");
for (i = 1, n = 0; i < argc; ++i)
{
if (argv[i][0] != '-')
{
switch (++n)
{
case 1:
fname = argv[i];
break;
default:
usage();
}
}
else
{
for (j = 0; Options[j]; ++j)
if (!strcmp(argv[i] + 1, Options[j]))
break;
switch (j)
{
case 0:
++i;
if (i > argc)
usage();
outname = argv[i];
break;
default:
usage();
}
}
}
if (!fname)
usage();
f = fopen(fname,"rb");
if (!f)
usage();
if (!end)
{
fseek(f,0,SEEK_END);
off = ftell(f);
end = (offset+off)-1;
rewind(f);
}
memory = (byte *)malloc(0x10000);
label = (byte *)malloc(0x10000);
if ((!memory) || (!label))
{
printf("no mem buffer\n");
goto exit;
}
memset(memory, 0x01, 0x10000);
memset(label, 0x00, 0x10000);
if (outname)
{
out = fopen(outname, "wb");
if (!out)
printf("can't open %s \n",outname);
}
if ((IsHex(f, memory, &begin, &end)) && /* if an Intel HEX file */
(out != stdout))
fwrite(memory + begin, end - begin + 1, 1, out);
exit:
if (f)
fclose(f);
if (outname)
if(out)
fclose(out);
if (memory)
free(memory);
return 0;
}