bios_putc.S 107 B

12345678910
  1. #include "common.h"
  2. BEGIN
  3. /*
  4. 40 == ASCII for '@'
  5. 0E == BIOS function ID.
  6. */
  7. mov $0x0E40, %ax
  8. int $0x10
  9. hlt