mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-03-23 05:20:35 +08:00
16 lines
225 B
C
16 lines
225 B
C
void io_hlt(void);
|
||
void write_mem8(int addr, int data);
|
||
|
||
void HariMain(void)
|
||
{
|
||
int i; /* 声明变量,i是32位整数 */
|
||
|
||
for (i = 0xa0000; i <= 0xaffff; i++) {
|
||
write_mem8(i, i & 0x0f);
|
||
}
|
||
|
||
for (;;) {
|
||
io_hlt();
|
||
}
|
||
}
|