mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
9 lines
101 B
C
9 lines
101 B
C
void api_putchar(int c);
|
|
void api_end(void);
|
|
|
|
void HariMain(void)
|
|
{
|
|
api_putchar('A');
|
|
api_end();
|
|
}
|