bios_newline.S 164 B

123456789
  1. /* https://github.com/cirosantilli/x86-bare-metal-examples#bios-examples */
  2. #include "common.h"
  3. BEGIN
  4. PRINT_STRING $msg
  5. hlt
  6. msg:
  7. .asciz "hello\nworld"