feat: refactor to use gcc types

This commit is contained in:
2021-02-12 22:16:03 +01:00
parent 555c1177a6
commit 8f615b259c
33 changed files with 419 additions and 361 deletions

View File

@@ -102,7 +102,7 @@ void write_serial(char a) {
}
void serial_kprint(const char *msg) {
u32 i = 0;
uint32_t i = 0;
while (1) {
char c = msg[i];
if (c == 0) {