some finishing touches to printf

This commit is contained in:
2025-05-30 15:20:02 -04:00
parent 47056f7d9a
commit f8c38d22b0
4 changed files with 316 additions and 110 deletions

View File

@ -22,4 +22,12 @@ void kmain(void)
terminal_initialize();
serial_initialize();
#endif
uint8_t a = 2;
uint16_t b = 3;
int c = 4;
uint64_t d = 10;
printf("%d, %d, %d, %3", a, b, c, d);
}