bios_keyboard.S 176 B

1234567891011
  1. /*
  2. http://stackoverflow.com/questions/4113250/how-to-handle-keyboard-in-real-mode-through-bios-interrupts
  3. */
  4. #include "common.h"
  5. BEGIN
  6. mov $0x00, %ah
  7. int $0x16
  8. PUTC <%al>
  9. hlt