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

10 lines
151 B
ArmAsm
Raw Normal View History

2018-12-04 09:46:27 +00:00
/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-keyboard */
2015-09-20 19:50:18 +02:00
#include "common.h"
BEGIN
mov $0x00, %ah
int $0x16
inc %al
PUTC <%al>
2015-09-20 19:50:18 +02:00
hlt