bios_keyboard.S 151 B

12345678910
  1. /* https://github.com/cirosantilli/x86-bare-metal-examples#bios-keyboard */
  2. #include "common.h"
  3. BEGIN
  4. mov $0x00, %ah
  5. int $0x16
  6. inc %al
  7. PUTC <%al>
  8. hlt