-
Notifications
You must be signed in to change notification settings - Fork 0
/
bdos.c
229 lines (189 loc) · 2.91 KB
/
bdos.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
#include <string.h>
#include <ctype.h>
#include "bdos.h"
void bdos() __naked
{
__asm
push ix
push iy
call BDOS
pop iy
pop ix
ret
__endasm;
}
uint bdos_drv_set(uchar drive) __naked
{
drive;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld c,#BDOS_DRV_SET
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uchar bdos_drv_get() __naked
{
__asm
call ___sdcc_enter_ix
ld c,#BDOS_DRV_GET
call _bdos
ld l,a
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_open(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_OPEN
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_close(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_CLOSE
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_make(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_MAKE
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
void bdos_f_dmaoff(void* dmaoff) __naked
{
dmaoff;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_DMAOFF
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_read(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_READ
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_rnd_readout(fcb_t* fcb, uint count) __naked
{
fcb; count;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld l, 6 (ix)
ld h, 7 (ix)
ld c,#BDOS_F_READOUT
call _bdos
ld l,a
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_write(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_WRITE
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
uint bdos_f_delete(fcb_t* fcb) __naked
{
fcb;
__asm
call ___sdcc_enter_ix
ld e, 4 (ix)
ld d, 5 (ix)
ld c,#BDOS_F_DELETE
call _bdos
ld sp, ix
pop ix
ret
__endasm;
}
bool bdos_init_fcb(fcb_t* fcb, const char* filename)
{
const char *dot, *dr;
size_t i;
memset(fcb, 0, sizeof(fcb_t));
memset(&fcb->F[0], ' ', 11);
dr = strchr(filename, ':');
if (dr)
{
if (dr - filename != 1)
return FALSE;
fcb->DR = toupper(dr[0]) - 'A';
if (fcb->DR > 25) return FALSE;
filename = dr + 1;
}
else fcb->DR = bdos_drv_get();
dot = strchr(filename, '.');
if (dot)
{
memcpy(&fcb->F[0], filename, MIN(dot - filename, 8));
dot++;
memcpy(&fcb->T[0], dot, MIN(strlen(dot), 3));
}
else
{
memcpy(&fcb->F[0], filename, MIN(strlen(filename), 8));
}
for (i = 0; i < 11; i++)
{
fcb->F[i] = toupper(fcb->F[i]);
if (fcb->F[i] == '*' || fcb->F[i] == '?' || fcb->F[i] == '\\' || fcb->F[i] == '/')
return FALSE;
}
return TRUE;
}