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

14 lines
196 B
ArmAsm
Raw Normal View History

2015-09-21 09:43:03 +02:00
/*
This just begs for a non-minimal for-fun infinite loop version.
Do try Ctrl-key combinations.
*/
#include "common.h"
BEGIN
start:
mov $0x00, %ah
int $0x16
PUTC(%al)
jmp start