mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-09 12:55:06 +08:00
8 lines
78 B
C
8 lines
78 B
C
void api_putchar(int c);
|
|
|
|
void HariMain(void)
|
|
{
|
|
api_putchar('A');
|
|
return;
|
|
}
|