mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-07 03:53:21 +08:00
18 lines
290 B
C
18 lines
290 B
C
void io_hlt(void);
|
||
|
||
void HariMain(void)
|
||
{
|
||
int i; /* 声明变量i,i是32位整数 */
|
||
char *p; /* 声明变量p、用于BYTE [...]地址 */
|
||
|
||
for (i = 0xa0000; i <= 0xaffff; i++) {
|
||
p = (char *)i;
|
||
*p = i & 0x0f;
|
||
/* 替代write_mem8(i, i & 0x0f); */
|
||
}
|
||
|
||
for (;;) {
|
||
io_hlt();
|
||
}
|
||
}
|