forked from turbo9team/turbo9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.c
341 lines (277 loc) · 7.59 KB
/
lib.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// [TURBO9_HEADER_START]
//////////////////////////////////////////////////////////////////////////////
// Turbo9 Microprocessor IP
//////////////////////////////////////////////////////////////////////////////
// Website: www.turbo9.org
// Contact: team[at]turbo9[dot]org
//////////////////////////////////////////////////////////////////////////////
// [TURBO9_LICENSE_START]
// BSD-1-Clause
//
// Copyright (c) 2020-2023
// Kevin Phillipson
// Michael Rywalt
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// [TURBO9_LICENSE_END]
//////////////////////////////////////////////////////////////////////////////
// Engineer: Kevin Phillipson
// Description: Library for vbcc compiler
//
//////////////////////////////////////////////////////////////////////////////
// History:
// 07.14.2023 - Kevin Phillipson
// File header added
//
//////////////////////////////////////////////////////////////////////////////
// [TURBO9_HEADER_END]
#include "lib.h"
//////////////////////////////////////// Print String
//
void acia_print_str(char *string_ptr)
{
while (*string_ptr != NULL)
{
acia_put_char(*string_ptr);
string_ptr++;
}
}
//////////////////////////////////////// Put 16-bit Hex
//
void acia_print_hex_16bit(u16 data)
{
union WORD tmp;
tmp.ui = data;
acia_print_hex_byte(tmp.ub[0]); // big endian
acia_print_hex_byte(tmp.ub[1]);
}
//////////////////////////////////////// Put 8-bit Hex
//
void acia_print_hex_byte(u08 data)
{
acia_put_hex_nibble((data>>4)&0x0F);
acia_put_hex_nibble((data)&0x0F);
}
//////////////////////////////////////// Put 4-bit Hex
//
void acia_put_hex_nibble(u08 data)
{
if (data > 9)
data += 0x07;
data += 0x30;
acia_put_char(data);
}
//////////////////////////////////////// Print signed decimal
//
void acia_print_signed_long(s32 snum)
{
union LONG tmp;
tmp.sl = snum;
if (tmp.ub[0] & 0x80) // Negative? (big endian)
{
// This method accounts for -2147483648 case.
// casting can cause issues depending on compiler
acia_put_char('-');
tmp.ul = ~tmp.ul;
tmp.ul++;
}
acia_print_unsigned_long(tmp.ul);
}
//////////////////////////////////////// Print unsigned decimal
//
void acia_print_unsigned_long(u32 unum)
{
u32 divisor = 1000000000;
u08 digit;
u08 flag;
flag = 0;
for (divisor = 1000000000; divisor != 0; divisor=divisor/10)
{
digit = (u08)(unum / divisor);
unum = unum % divisor;
if ((digit != 0) || (divisor == 1))
{
flag = 1;
}
if (flag)
{
digit += 0x30;
acia_put_char(digit);
}
}
}
/*
//////////////////////////////////////// Print unsigned decimal
//
void acia_print_unsigned_long(u32 unum)
{
static u32 div_array[10] = {1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000};
u32 div;
u08 digit;
u08 flag;
u08 idx;
flag = 0;
for (idx = 10; idx !=0; idx--)
{
digit = 0;
div = 0;
while ((unum > div) && ~((idx == 10) && (digit == 4)))
{
div = div + div_array[idx-1];
digit++;
}
if ((unum < div)
{
div = div - div_array[idx-1];
digit--;
}
unum = unum - div;
if ((idx == 1) || (digit != 0))
{
flag = 1;
}
if (flag)
{
digit += 0x30;
acia_put_char(digit);
}
}
}
*/
void setup(void)
{
}
void teardown(void)
{
}
/*
void abort(void)
{
acia_print_str("\nNaN\n");
}
*/
/*
Function emalloc() - provides a dynamic memory allocation service sufficient
for two allocations of 50 bytes each or less.
*/
/*
int strcmp(const char *s1, const char *s2)
{
// check if s1 and s2 vectors are equal
while(*s1 != '\0' && *s1 == *s2)
{
s1++;
s2++;
}
// return the difference of the last char on the string
return (*(unsigned char *) s1) - (*(unsigned char *) s2);
}
*/
/*
int strcmp(const char *s1, const char *s2)
{
// This is the correct amount of unrolling
// Tuned for maximum performance
// More or less unrolling will degrade peformance
__asm
(
" pshs x,y \n"
" tfr d,y \n"
" ldx 6,s ; s2 addr \n"
"strcmp_loop: \n"
" ldd ,y++ \n"
" tsta \n"
" beq strcmp_done_cond1_a \n"
" tstb \n"
" beq strcmp_done_cond1_b \n"
" subd ,x++ \n"
" bne strcmp_done_d \n"
" ; \n"
" ldd ,y++ \n"
" tsta \n"
" beq strcmp_done_cond1_a \n"
" tstb \n"
" beq strcmp_done_cond1_b \n"
" subd ,x++ \n"
" beq strcmp_loop \n"
" ; \n"
"strcmp_done_d: \n"
" ldd -2,y \n"
" suba -2,x \n"
" bne strcmp_done_a \n"
" subb -1,x \n"
" bra strcmp_done_b \n"
"strcmp_done_cond1_a: \n"
" suba ,x \n"
"strcmp_done_a: \n"
" tfr a,b \n"
" bra strcmp_done_b \n"
"strcmp_done_cond1_b: \n"
" subb 1,x \n"
"strcmp_done_b: \n"
" sex \n"
" puls x,y,pc \n"
);
}
*/
/*
void *memcpy(char *d, const char *s, unsigned l)
{
while (l--) *d++ = *s++;
return d;
}
*/
/*
char* strcpy(char *dst0, const char * src0)
{
char *s = dst0;
// copy the source to the destination
while(*dst0++ = *src0++);
return s;
}
char* strcpy(char *dst0, const char * src0)
{
__asm
(
// " pshs y,u \n"
" tfr d,y \n"
" ldu 2,s \n"
"strcpy_loop: \n"
" lda ,u+ \n"
" beq strcpy_done_wr_8bit \n"
" ldb ,u+ \n"
" beq strcpy_done_wr_16bit \n"
" std ,y++ \n"
" ; \n"
" lda ,u+ \n"
" beq strcpy_done_wr_8bit \n"
" ldb ,u+ \n"
" beq strcpy_done_wr_16bit \n"
" std ,y++ \n"
" bra strcpy_loop \n"
"strcpy_done_wr_16bit: \n"
" std ,y \n"
" puls y,u,pc \n"
"strcpy_done_wr_8bit: \n"
" sta ,y \n"
//" puls y,u,pc \n"
)
}
*/