1 /* 2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 #include <kernel/kernel.h> 6 #include <kernel/debug.h> 7 8 #include <boot/stage2.h> 9 10 struct vector *vector_table; 11 12 void arch_int_enable_io_interrupt(int32 irq) 13 { 14 return; 15 } 16 17 void arch_int_disable_io_interrupt(int32 irq) 18 { 19 return; 20 } 21 22 int arch_int_init(kernel_args *ka) 23 { 24 int i; 25 26 dprintf("arch_int_init: entry\n"); 27 28 return 0; 29 } 30 31 int arch_int_init2(kernel_args *ka) 32 { 33 return 0; 34 } 35 36