mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
9 lines
116 B
C
9 lines
116 B
C
void api_putstr0(char *s);
|
|
void api_end(void);
|
|
|
|
void HariMain(void)
|
|
{
|
|
api_putstr0("hello, world\n");
|
|
api_end();
|
|
}
|