pit.c
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:1k
- #include <devices/pit.h>
- void __init_device init_isa_pit (struct device* dev) {
-
- kprint ("Registered ISA Device:");
- kprint (dev->name);
- kprint (" n");
- int i;
- outportb(PIT_TYPE,0x00);
- unsigned long foo = (CLOCK_TICK_RATE + HERTZ/2) / HERTZ;
- outportb(PIT_TYPE, 0x36); /* comptador 0, LSB primer MSB despr閟, mode 3, binary */
- i=100; /* Petita espera */
- while (i>0) i--;
- i=100;
- /* Carreguem el valor del divisor del comptador 0 */
- outportb(PIT_CHANNEL_0, foo & 0xFF); /* LSB */
- while (i>0) i--;
- outportb(PIT_CHANNEL_0, foo >> 8); /* MSB */
- }