aboutsummaryrefslogtreecommitdiff
path: root/src/hexout.c
blob: ef41634cc337c9030a8f33f5b278e3a4edd3b7dc (plain)
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
/*

    casm - Simple, portable assembler

    Copyright (C) 2003-2015  Ian Cowburn (ianc@noddybox.co.uk)

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

    -------------------------------------------------------------------------

    Intel HEX output handler.

*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "global.h"
#include "codepage.h"
#include "hexout.h"
#include "expr.h"


/* ---------------------------------------- MACROS & TYPES
*/

/* ---------------------------------------- PRIVATE TYPES AND VARS
*/
enum option_t
{
    OPT_NULL_BYTE
};

static const ValueTable option_set[]=
{
    {"hex-null", OPT_NULL_BYTE},
    {NULL}
};

typedef struct
{
    int		null_byte;
} Options;

static Options options =
{
    0
};


/* ---------------------------------------- PRIVATE FUNCTIONS
*/

/* ---------------------------------------- INTERFACES
*/
const ValueTable *HEXOutputOptions(void)
{
    return option_set;
}

CommandStatus HEXOutputSetOption(int opt, int argc, char *argv[],
                                 int quoted[], char *err, size_t errsize)
{
    CommandStatus stat = CMD_OK;

    CMD_ARGC_CHECK(1);

    switch(opt)
    {
        case OPT_NULL_BYTE:
            CMD_EXPR(argv[0], options.null_byte);
            break;

        default:
            break;
    }

    return stat;
}

int HEXOutput(const char *filename, const char *filename_bank,
              MemoryBank **bank, int count, char *error, size_t error_size)
{
    int f;

    for(f = 0; f < count; f++)
    {
        FILE *fp;
        char buff[4096];
        const char *name;
        Byte *mem;
        int r;

        if (count == 1)
        {
            name = filename;
        }
        else
        {
            snprintf(buff, sizeof buff, filename_bank, bank[f]->number);
            name = buff;
        }

        if (!(fp = fopen(name, "wb")))
        {
            snprintf(error, error_size, "Failed to open %s", name);
            return FALSE;
        }

        mem = bank[f]->memory;

        for(r = 0; r < 0xffff; r += 16)
        {
            int n;
            int found = 0;

            for(n = 0; n < 16 && !found; n++)
            {
                if (mem[r+n] != options.null_byte)
                {
                    found = 1;
                }
            }

            if (found)
            {
                Byte csum = 0;

                fprintf(fp, ":10%4.4X00", r);

                for(n = 0; n < 16; n++)
                {
                    fprintf(fp, "%2.2X", mem[r+n]);
                    csum += mem[r+n];
                }

                csum = ~csum;
                csum++;

                fprintf(fp, "%2.2X\n", csum);
            }
        }

        fprintf(fp, ":00000001FF\n");
        fclose(fp);
    }

    return TRUE;
}


/*
vim: ai sw=4 ts=8 expandtab
*/