mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
10 lines
105 B
C
10 lines
105 B
C
void api_putchar(int c);
|
|
void api_end(void);
|
|
|
|
void HariMain(void)
|
|
{
|
|
for (;;) {
|
|
api_putchar('a');
|
|
}
|
|
}
|