00001 // EPOS-- PC Interrupt Controller Initialization 00002 00003 // This work is licensed under the Creative Commons 00004 // Attribution-NonCommercial-NoDerivs License. To view a copy of this license, 00005 // visit http://creativecommons.org/licenses/by-nc-nd/2.0/ or send a letter to 00006 // Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. 00007 00008 #include <mach/pc/ic.h> 00009 00010 __BEGIN_SYS 00011 00012 int PC_IC::init(System_Info * si) 00013 { 00014 db<PC_IC>(TRC) << "PC_IC::init()\n"; 00015 00016 PC_IC ic; 00017 00018 ic.remap(); 00019 ic.disable(); 00020 00021 return 0; 00022 } 00023 00024 __END_SYS