Files
x86-bare-metal-examples/bios_hello_world.S
2019-08-24 00:00:02 +00:00

17 lines
258 B
ArmAsm

/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-hello-world */
#include "common.h"
BEGIN
mov $msg, %si
mov $0x0e, %ah
loop:
lodsb
or %al, %al
jz halt
int $0x10
jmp loop
halt:
hlt
msg:
.asciz "hello world"