Files
x86-bare-metal-examples/test_print_bytes.S

10 lines
194 B
ArmAsm
Raw Normal View History

/* https://github.com/cirosantilli/x86-bare-metal-examples#print_bytes */
2018-12-04 09:46:27 +00:00
#include "common.h"
BEGIN
CLEAR
2015-10-28 18:36:31 +01:00
PRINT_BYTES $s, $s_len
hlt
2015-10-28 18:36:31 +01:00
s: .ascii "@ABCDEFGHIJKLMNOP"
.equ s_len, . - s