aboutsummaryrefslogtreecommitdiff
path: root/src/libout.c
blob: f9ca74ffc6d5060f4a3070fa9283392b73bd823b (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
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
/*

    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/>.

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

    LIB binary file output

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

#include "global.h"
#include "libout.h"
#include "label.h"


/* Magic value for library file
*/
#define CASM_LIBRARY_MAGIC      "CASMLIBv1%"  
#define CASM_LIBRARY_MAGIC_LEN  10                


/* ---------------------------------------- PRIVATE INTERFACES
*/

static void WriteNumber(FILE *fp, int num)
{
    fprintf(fp, "%.11d", num);
}


static int ReadNumber(FILE *fp)
{
    char buff[12];
    int f;

    for(f= 0 ;f < 11; f++)
    {
        buff[f] = getc(fp);
    }

    buff[f] = 0;

    return atoi(buff);
}


/* ---------------------------------------- INTERFACES
*/
const ValueTable *LibOutputOptions(void)
{
    return NULL;
}

CommandStatus LibOutputSetOption(int opt, int argc, char *argv[],
                                 int quoted[], char *error, size_t error_size)
{
    return CMD_NOT_KNOWN;
}

int LibOutput(const char *filename, const char *filename_bank,
              MemoryBank **bank, int count, char *error, size_t error_size)
{
    FILE *fp;
    char buff[4096];
    int f;

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

    fwrite(CASM_LIBRARY_MAGIC, 1, CASM_LIBRARY_MAGIC_LEN, fp);

    WriteNumber(fp, count);

    for(f = 0; f < count; f++)
    {
        const Byte *mem;
        int min, max, len;

        mem = bank[f]->memory;
        min = bank[f]->min_address_used;
        max = bank[f]->max_address_used;
        len = max - min + 1;

        WriteNumber(fp, (int)bank[f]->number);
        WriteNumber(fp, min);
        WriteNumber(fp, len);

        fwrite(mem + min, 1, len, fp);
    }

    LabelWriteBlob(fp);

    fclose(fp);

    return TRUE;
}


int LibLoad(const char *filename, LibLoadOption opt,
            char *error, size_t error_size)
{
    char magic[CASM_LIBRARY_MAGIC_LEN + 1] = {0};
    FILE *fp;
    Byte buff[0x10000];
    int count;
    int f;

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

    fread(magic, 1, CASM_LIBRARY_MAGIC_LEN, fp);

    if (strcmp(magic, CASM_LIBRARY_MAGIC) != 0)
    {
        snprintf(error, error_size, "%s not a recognised library", filename);
        fclose(fp);
        return FALSE;
    }

    count = ReadNumber(fp);

    for(f = 0; f < count; f++)
    {
        int bank;
        int min;
        int len;
        int old_pc;
        unsigned old_bank;
        Byte *p;

        old_bank = Bank();
        old_pc = PC();

        bank = ReadNumber(fp);
        min = ReadNumber(fp);
        len = ReadNumber(fp);

        SetAddressBank(bank);

        fread(buff, 1, len, fp);

        SetPC(min);
        p = buff;

        if (opt != LibLoadLabels)
        {
            while(len-- > 0)
            {
                PCWrite(*p++);
            }
        }

        SetPC(old_pc);
        SetAddressBank(old_bank);
    }

    if (opt != LibLoadMemory)
    {
        LabelReadBlob(fp);
    }

    fclose(fp);

    return TRUE;
}


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