mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +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();
|
|
}
|