Files
x86-bare-metal-examples/bios_putc.S
Ciro Santilli e0a2854087 link to examples from readme
Do another cleanup round while I'm at it.
2018-07-17 10:06:47 +01:00

9 lines
111 B
ArmAsm

#include "common.h"
BEGIN
/* 40 == ASCII for '@'
* 0E == BIOS function ID.
*/
mov $0x0E40, %ax
int $0x10
hlt