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

13 lines
132 B
ArmAsm
Raw Normal View History

2015-10-04 19:59:15 +02:00
/*
*/
#include "common.h"
BEGIN
CLEAR
movw $handler, 0x00
mov %cs, 0x02
int $0
handler:
PUTC($0x61)
int $0