forked from backup/30dayMakeOS
32 lines
852 B
C
32 lines
852 B
C
/* bootpack */
|
|
|
|
#include "bootpack.h"
|
|
#include <stdio.h>
|
|
|
|
void HariMain(void)
|
|
{
|
|
struct BOOTINFO *binfo = (struct BOOTINFO *) ADR_BOOTINFO;
|
|
char s[40], mcursor[256];
|
|
int mx, my;
|
|
|
|
init_gdtidt();
|
|
init_pic();
|
|
io_sti(); /* IDT/PICの初期化が終わったのでCPUの割り込み禁止を解除 */
|
|
|
|
init_palette();
|
|
init_screen8(binfo->vram, binfo->scrnx, binfo->scrny);
|
|
mx = (binfo->scrnx - 16) / 2; /* 计算画面的中心坐标*/
|
|
my = (binfo->scrny - 28 - 16) / 2;
|
|
init_mouse_cursor8(mcursor, COL8_008484);
|
|
putblock8_8(binfo->vram, binfo->scrnx, 16, 16, mx, my, mcursor, 16);
|
|
sprintf(s, "(%d, %d)", mx, my);
|
|
putfonts8_asc(binfo->vram, binfo->scrnx, 0, 0, COL8_FFFFFF, s);
|
|
|
|
io_out8(PIC0_IMR, 0xf9); /* PIC1とキーボードを許可(11111001) */
|
|
io_out8(PIC1_IMR, 0xef); /* マウスを許可(11101111) */
|
|
|
|
for (;;) {
|
|
io_hlt();
|
|
}
|
|
}
|