diff --git a/src/irq.pas b/src/irq.pas new file mode 100644 index 00000000..c36098de --- /dev/null +++ b/src/irq.pas @@ -0,0 +1,30 @@ +{ ************************************************ + * Asuro + * Unit: irq + * Description: mapping IRQs + ************************************************ + * Author: Aaron Hance + * Contributors: + ************************************************ } + +unit irq; + +interface + +procedure init(); + +implementation + +procedure init(); + +outb($0020, $11); +outb($00A0, $11); +outb($0021, 32); +outb($00A1, 40); +outb($0021, 4); +outb($00A1, 2); +begin + +end; + +end. \ No newline at end of file