#include <stdint.h>
#define SYS_WRITE 0
void printf(const char* fmt, ...);
void printfstrcol_scr(uint8_t font, const char* fmt);
void _start(void)
{
printf("sghs");
while(1);
}
void printf(const char* fmt, ...){
uprintfstrcol_scr(0xF0,fmt);
}
void printfstrcol_scr(uint8_t font, const char* fmt){
...
}