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

13 lines
158 B
ArmAsm
Raw Normal View History

2018-12-04 09:46:27 +00:00
/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-color */
2015-09-20 10:59:36 +02:00
#include "common.h"
BEGIN
mov $0x0B, %ah
mov $0x0034, %bx
int $0x10
PUTC $'a
2015-09-20 10:59:36 +02:00
hlt