From: Duje Mihanović Date: Wed, 22 Sep 2021 20:15:40 +0000 (+0200) Subject: Handle interrupts X-Git-Tag: 0.1.0~16 X-Git-Url: http://git.dujemihanovic.xyz/projects?a=commitdiff_plain;h=9fc180435dd7b476130851c48e1ac28009daa864;hp=9fc180435dd7b476130851c48e1ac28009daa864;p=nameless-os.git Handle interrupts Currently handles exception 8 and IRQ 1. EXC8 is double fault, and IRQ1 is keyboard. EXC8 handler puts out a ':(' on the top left corner of the screen and halts the machine, while IRQ1 puts out a string on the screen. However, it will only do so once, and I have yet to figure out why. ---