You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.3 KiB
C
71 lines
1.3 KiB
C
#include "io.h"
|
|
|
|
#ifdef TEXT_IO_ADDR
|
|
|
|
void dbgln(char* text, int len)
|
|
{
|
|
while (len > TEXT_IO_BUFLEN) {
|
|
dbgln(text, TEXT_IO_BUFLEN);
|
|
text += TEXT_IO_BUFLEN;
|
|
len -= TEXT_IO_BUFLEN;
|
|
}
|
|
|
|
char* ioaddr = (char*) TEXT_IO_ADDR + 4;
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
if (*text == 0)
|
|
break;
|
|
*ioaddr++ = *text++;
|
|
}
|
|
|
|
if (len < TEXT_IO_BUFLEN)
|
|
*ioaddr = '\n';
|
|
|
|
// write a 1 to the start of the textIO to signal a buffer flush
|
|
*((char*) TEXT_IO_ADDR) = 1;
|
|
}
|
|
|
|
|
|
/* alphabet for itoa */
|
|
char alpha[16] = "0123456789abcdef";
|
|
char* itoa(int value, char* str, int base)
|
|
{
|
|
if (base > 16 || base < 2) {
|
|
*str++ = '?';
|
|
return str;
|
|
}
|
|
|
|
if (value < 0) {
|
|
*str++ = '-';
|
|
value *= -1;
|
|
}
|
|
|
|
int digits = 0;
|
|
int num = 0;
|
|
|
|
// reverse number
|
|
do {
|
|
num = num * base;
|
|
num += value % base;
|
|
value = value / base;
|
|
digits++;
|
|
} while (value > 0);
|
|
|
|
value = num;
|
|
do {
|
|
num = value % base;
|
|
value = value / base;
|
|
*str++ = alpha[num];
|
|
digits--;
|
|
}while (digits > 0);
|
|
|
|
return str;
|
|
}
|
|
|
|
#else
|
|
|
|
// this is included to prevent "error: ISO C forbids an empty translation unit [-Wpedantic]"
|
|
typedef int make_iso_compilers_happy;
|
|
|
|
#endif
|