Files
x86-bare-metal-examples/bios_cursor_position.S
Ciro Santilli 61f0ad8dda Remove END
2015-10-05 16:58:44 +02:00

21 lines
264 B
ArmAsm

#include "common.h"
BEGIN
CLEAR
/* Print "ab" */
PUTC($0x61)
PUTC($0x62)
/* 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'. */
PUTC($0x63)
hlt