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

11 lines
183 B
ArmAsm
Raw Permalink Normal View History

2018-12-04 09:46:27 +00:00
/* https://github.com/cirosantilli/x86-bare-metal-examples#interrupts */
2015-10-04 19:59:15 +02:00
#include "common.h"
BEGIN
CLEAR
movw $handler, 0x00
mov %cs, 0x02
int $0
handler:
int $0