-
Notifications
You must be signed in to change notification settings - Fork 8
/
lib.c
197 lines (163 loc) · 4.34 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
// [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)
{
}