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

18 lines
224 B
ArmAsm

/*
What happens when a newline is output with bios.
Outcome:
hello
world
Carriage returns are needed just like in old days.
*/
#include "common.h"
BEGIN
PRINT $msg
hlt
msg:
.asciz "hello\nworld"