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
|
/*
int2tap - Convert an Intel segment file to a loadable Spectrum tape file
Copyright (C) 2004 Ian Cowburn (ianc@noddybox.demon.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 2 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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------
A Spectrum BASIC line is constructed:
<2-byte line number HI/LO>
<2-byte length including RET LO/HI>
<Data>
<RET - 0x0d>
*/
static const char id[]="$Id$";
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include "basic.h"
static const char header_id[]=I2T_BASIC_H;
/* ---------------------------------------- CONSTANTS
*/
#undef TRUE
#undef FALSE
#define TRUE 1
#define FALSE 0
/* Types for AddLine()
*/
#define TYPE_END 0
#define TYPE_TOKEN 1
#define TYPE_STRING 2
/* Constants for some tokens
*/
#define TOK_VAL 176
#define TOK_QUOTE 34
#define TOK_CODE 175
#define TOK_USR 192
#define TOK_LOAD 239
#define TOK_RAND 249
#define TOK_CLEAR 253
/* ---------------------------------------- GLOBALS
*/
extern const char *progname;
static unsigned char mem[0x10000];
static unsigned endptr;
static unsigned line_no;
/* ---------------------------------------- PRIVATE FUNCTIONS
*/
static void Poke(unsigned char b, int *len)
{
if (len)
{
(*len)++;
}
mem[endptr++]=b;
}
static void AddLine(int type, ...)
{
va_list va;
int len;
unsigned char *len_ptr;
Poke(line_no>>8,NULL);
Poke(line_no&0xff,NULL);
line_no+=10;
len_ptr=mem+endptr;
endptr+=2;
len=0;
va_start(va,type);
while(type!=TYPE_END)
{
char *str;
switch(type)
{
case TYPE_TOKEN:
Poke(va_arg(va,int),&len);
break;
case TYPE_STRING:
str=va_arg(va,char *);
Poke(TOK_QUOTE,&len);
while(*str)
{
Poke(*str++,&len);
}
Poke(TOK_QUOTE,&len);
break;
default:
break;
}
type=va_arg(va,int);
}
Poke(0x0d,&len);
*len_ptr++=len&0xff;
*len_ptr=len>>8;
}
/* ---------------------------------------- INTERFACES
*/
void BasicInit(void)
{
endptr=0;
line_no=10;
}
void BasicClearLine(unsigned val)
{
char no[64];
sprintf(no,"%u",val);
AddLine(TYPE_TOKEN,TOK_CLEAR,
TYPE_TOKEN,TOK_VAL,
TYPE_STRING,no,
TYPE_END);
}
void BasicLoadLine(void)
{
AddLine(TYPE_TOKEN,TOK_LOAD,
TYPE_TOKEN,TOK_QUOTE,
TYPE_TOKEN,TOK_QUOTE,
TYPE_TOKEN,TOK_CODE,
TYPE_END);
}
void BasicRandUsr(unsigned val)
{
char no[64];
sprintf(no,"%u",val);
AddLine(TYPE_TOKEN,TOK_RAND,
TYPE_TOKEN,TOK_USR,
TYPE_TOKEN,TOK_VAL,
TYPE_STRING,no,
TYPE_END);
}
const unsigned char *BasicBase(void)
{
return mem;
}
const unsigned BasicLength(void)
{
return endptr;
}
/* END OF FILE */
|