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

操作系统开发

开发平台:

C/C++

  1. #ifndef SYSTEM_BUS_H
  2. #define SYSTEM_BUS_H
  3. #include <init.h>
  4. #include <devices.h>
  5. #include <lib/string.h>
  6. #include <i386/paging.h>
  7. #include <list.h>
  8. #define SYSTEM_CONSOLE_STR "SYS_CONSOLE"
  9. #define SYSTEM_DEVS { SYSTEM_CONSOLE_STR , "END" }
  10. /* Includes pels devices */
  11. #include <devices/sys_console.h>
  12. void __init_bus init_system_bus (struct bus_driver* newbus);
  13. #endif