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
|
|
|
|
|
|
2015-10-21 15:55:27 +02:00
|
|
|
PUTC $'a
|
2015-09-20 10:59:36 +02:00
|
|
|
|
|
|
|
|
hlt
|