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

10 lines
172 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-21 09:43:03 +02:00
#include "common.h"
BEGIN
start:
mov $0x00, %ah
int $0x16
PUTC <%al>
2015-09-21 09:43:03 +02:00
jmp start