19 lines
231 B
ArmAsm
19 lines
231 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\n\rworld"
|
|
END
|