《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
222 B

10 years ago
  1. #ifndef __KERN_DRIVER_CONSOLE_H__
  2. #define __KERN_DRIVER_CONSOLE_H__
  3. void cons_init(void);
  4. void cons_putc(int c);
  5. int cons_getc(void);
  6. void serial_intr(void);
  7. void kbd_intr(void);
  8. #endif /* !__KERN_DRIVER_CONSOLE_H__ */