Refactored into multiple files

This commit is contained in:
Lucia Ceionia
2022-09-14 21:54:59 -05:00
parent 0fa405dd98
commit 880118e7b4
10 changed files with 614 additions and 570 deletions

21
print.c Normal file
View File

@@ -0,0 +1,21 @@
#include "print.h"
__attribute((__always_inline__))
char nibbleToHex(uint8_t n) {
return n > 9 ? (n - 10) + 'A' : n + '0';
}
__attribute((__always_inline__))
void printByte(uint8_t v, uint16_t *buff) {
*(char *)&buff[0] = nibbleToHex((v >> 4) & 0xF);
*(char *)&buff[1] = nibbleToHex(v & 0xF);
}
__attribute((__always_inline__))
void printWord(uint16_t v, uint16_t *buff) {
printByte(v >> 8, buff);
printByte(v, &buff[2]);
}
__attribute((__always_inline__))
void printDword(uint32_t v, uint16_t *buff) {
printWord(v >> 16, buff);
printWord(v, &buff[4]);
}