/* https://github.com/cirosantilli/x86-bare-metal-examples#bios-keyboard */
#include "common.h"
BEGIN
mov $0x00, %ah
int $0x16
inc %al
PUTC <%al>
hlt