mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
10 lines
219 B
C
10 lines
219 B
C
#include "apilib.h"
|
|
|
|
void HariMain(void)
|
|
{
|
|
static char s[9] = { 0xb2, 0xdb, 0xca, 0xc6, 0xce, 0xcd, 0xc4, 0x0a, 0x00 };
|
|
/*半角片假名イロハニホヘト的字符编码+换行+0 */
|
|
api_putstr0(s);
|
|
api_end();
|
|
}
|