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