pit.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #ifndef PIT_H
  2. #define PIT_H
  3. #include<init.h>
  4. #include<devices.h>
  5. #include<list.h>
  6. #include<lib/string.h>
  7. #include <i386/io_low_HLL.h>
  8. #define PIT_TYPE 0x43
  9. #define PIT_CHANNEL_0 0x40
  10. #define HERTZ 100
  11. #define CLOCK_TICK_RATE 1193182
  12. void __init_device init_isa_pit (struct device* dev);
  13. #endif