2018-12-04 09:46:27 +00:00
|
|
|
/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-examples */
|
|
|
|
|
|
2015-09-20 10:59:36 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
BEGIN
|
|
|
|
|
CLEAR
|
|
|
|
|
|
|
|
|
|
/* Print "ab" */
|
2015-10-21 15:55:27 +02:00
|
|
|
PUTC $'a
|
|
|
|
|
PUTC $'b
|
2015-09-20 10:59:36 +02:00
|
|
|
|
|
|
|
|
/* Move back to 0, 0.*/
|
|
|
|
|
mov $0x02, %ah
|
|
|
|
|
/* page number 0. TODO what is this? */
|
|
|
|
|
mov $0x0, %bh
|
|
|
|
|
/* DH=0 row, DL=0 col */
|
|
|
|
|
mov $0x0, %dx
|
|
|
|
|
int $0x10
|
|
|
|
|
|
|
|
|
|
/* Overwrite 'a' with c'. */
|
2015-10-21 15:55:27 +02:00
|
|
|
PUTC $'c
|
2015-09-20 10:59:36 +02:00
|
|
|
|
|
|
|
|
hlt
|