test_print_bytes.S 194 B

12345678910
  1. /* https://github.com/cirosantilli/x86-bare-metal-examples#print_bytes */
  2. #include "common.h"
  3. BEGIN
  4. CLEAR
  5. PRINT_BYTES $s, $s_len
  6. hlt
  7. s: .ascii "@ABCDEFGHIJKLMNOP"
  8. .equ s_len, . - s