bios_keyboard_loop.S 172 B

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