bios_background.S 158 B

12345678910111213
  1. /* https://github.com/cirosantilli/x86-bare-metal-examples#bios-color */
  2. #include "common.h"
  3. BEGIN
  4. mov $0x0B, %ah
  5. mov $0x0034, %bx
  6. int $0x10
  7. PUTC $'a
  8. hlt