interrupt_loop.S 129 B

12345678910111213
  1. /*
  2. */
  3. #include "common.h"
  4. BEGIN
  5. CLEAR
  6. movw $handler, 0x00
  7. mov %cs, 0x02
  8. int $0
  9. handler:
  10. PUTC $'a
  11. int $0