mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 10:03:20 +08:00
157 lines
4.2 KiB
C
157 lines
4.2 KiB
C
/* bootpackのメイン */
|
||
|
||
#include "bootpack.h"
|
||
#include <stdio.h>
|
||
|
||
unsigned int memtest(unsigned int start, unsigned int end);
|
||
unsigned int memtest_sub(unsigned int start, unsigned int end);
|
||
|
||
void HariMain(void)
|
||
{
|
||
struct BOOTINFO *binfo = (struct BOOTINFO *) ADR_BOOTINFO;
|
||
char s[40], mcursor[256], keybuf[32], mousebuf[128];
|
||
int mx, my, i;
|
||
struct MOUSE_DEC mdec;
|
||
|
||
init_gdtidt();
|
||
init_pic();
|
||
io_sti(); /* IDT/PIC的初始化已经完成,于是开放CPU的中断 */
|
||
|
||
fifo8_init(&keyfifo, 32, keybuf);
|
||
fifo8_init(&mousefifo, 128, mousebuf);
|
||
io_out8(PIC0_IMR, 0xf9); /* 开放PIC1和键盘中断(11111001) */
|
||
io_out8(PIC1_IMR, 0xef); /* 开放鼠标中断(11101111) */
|
||
|
||
init_keyboard();
|
||
enable_mouse(&mdec);
|
||
|
||
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);
|
||
|
||
i = memtest(0x00400000, 0xbfffffff) / (1024 * 1024);
|
||
sprintf(s, "memory %dMB", i);
|
||
putfonts8_asc(binfo->vram, binfo->scrnx, 0, 32, COL8_FFFFFF, s);
|
||
|
||
for (;;) {
|
||
io_cli();
|
||
if (fifo8_status(&keyfifo) + fifo8_status(&mousefifo) == 0) {
|
||
io_stihlt();
|
||
} else {
|
||
if (fifo8_status(&keyfifo) != 0) {
|
||
i = fifo8_get(&keyfifo);
|
||
io_sti();
|
||
sprintf(s, "%02X", i);
|
||
boxfill8(binfo->vram, binfo->scrnx, COL8_008484, 0, 16, 15, 31);
|
||
putfonts8_asc(binfo->vram, binfo->scrnx, 0, 16, COL8_FFFFFF, s);
|
||
} else if (fifo8_status(&mousefifo) != 0) {
|
||
i = fifo8_get(&mousefifo);
|
||
io_sti();
|
||
if (mouse_decode(&mdec, i) != 0) {
|
||
/* 3字节都凑齐了,所以把它们显示出来*/
|
||
sprintf(s, "[lcr %4d %4d]", mdec.x, mdec.y);
|
||
if ((mdec.btn & 0x01) != 0) {
|
||
s[1] = 'L';
|
||
}
|
||
if ((mdec.btn & 0x02) != 0) {
|
||
s[3] = 'R';
|
||
}
|
||
if ((mdec.btn & 0x04) != 0) {
|
||
s[2] = 'C';
|
||
}
|
||
boxfill8(binfo->vram, binfo->scrnx, COL8_008484, 32, 16, 32 + 15 * 8 - 1, 31);
|
||
putfonts8_asc(binfo->vram, binfo->scrnx, 32, 16, COL8_FFFFFF, s);
|
||
/* 鼠标指针的移动 */
|
||
boxfill8(binfo->vram, binfo->scrnx, COL8_008484, mx, my, mx + 15, my + 15); /* 隐藏鼠标 */
|
||
mx += mdec.x;
|
||
my += mdec.y;
|
||
if (mx < 0) {
|
||
mx = 0;
|
||
}
|
||
if (my < 0) {
|
||
my = 0;
|
||
}
|
||
if (mx > binfo->scrnx - 16) {
|
||
mx = binfo->scrnx - 16;
|
||
}
|
||
if (my > binfo->scrny - 16) {
|
||
my = binfo->scrny - 16;
|
||
}
|
||
sprintf(s, "(%3d, %3d)", mx, my);
|
||
boxfill8(binfo->vram, binfo->scrnx, COL8_008484, 0, 0, 79, 15); /* 隐藏坐标 */
|
||
putfonts8_asc(binfo->vram, binfo->scrnx, 0, 0, COL8_FFFFFF, s); /* 显示坐标 */
|
||
putblock8_8(binfo->vram, binfo->scrnx, 16, 16, mx, my, mcursor, 16); /* 描画鼠标 */
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
#define EFLAGS_AC_BIT 0x00040000
|
||
#define CR0_CACHE_DISABLE 0x60000000
|
||
|
||
unsigned int memtest(unsigned int start, unsigned int end)
|
||
{
|
||
char flg486 = 0;
|
||
unsigned int eflg, cr0, i;
|
||
|
||
/* 确认CPU是386还是486以上的 */
|
||
eflg = io_load_eflags();
|
||
eflg |= EFLAGS_AC_BIT; /* AC-bit = 1 */
|
||
io_store_eflags(eflg);
|
||
eflg = io_load_eflags();
|
||
if ((eflg & EFLAGS_AC_BIT) != 0) {
|
||
/* 如果是386,即使设定AC=1,AC的值还会自动回到0 */
|
||
flg486 = 1;
|
||
}
|
||
|
||
eflg &= ~EFLAGS_AC_BIT; /* AC-bit = 0 */
|
||
io_store_eflags(eflg);
|
||
|
||
if (flg486 != 0) {
|
||
cr0 = load_cr0();
|
||
cr0 |= CR0_CACHE_DISABLE; /* 禁止缓存 */
|
||
store_cr0(cr0);
|
||
}
|
||
|
||
i = memtest_sub(start, end);
|
||
|
||
if (flg486 != 0) {
|
||
cr0 = load_cr0();
|
||
cr0 &= ~CR0_CACHE_DISABLE; /* 允许缓存 */
|
||
store_cr0(cr0);
|
||
}
|
||
|
||
return i;
|
||
}
|
||
|
||
unsigned int memtest_sub(unsigned int start, unsigned int end)
|
||
{
|
||
unsigned int i, *p, old, pat0 = 0xaa55aa55, pat1 = 0x55aa55aa;
|
||
for (i = start; i <= end; i += 0x1000) {
|
||
p = (unsigned int *) (i + 0xffc);
|
||
old = *p; /* 先记住修改前的值 */
|
||
*p = pat0; /* 试写 */
|
||
*p ^= 0xffffffff; /* 反转 */
|
||
if (*p != pat1) {
|
||
/* 检查反转结果 */
|
||
not_memory:
|
||
*p = old;
|
||
break;
|
||
}
|
||
*p ^= 0xffffffff; /* 再次反转 */
|
||
if (*p != pat0) {
|
||
/* 检查值是否恢复 */
|
||
goto not_memory;
|
||
}
|
||
*p = old; /* 恢复为修改前的值 */
|
||
}
|
||
return i;
|
||
}
|
||
|