--- a/baseport/syborg/specific/syborg.cia Tue Apr 13 18:30:00 2010 +0100
+++ b/baseport/syborg/specific/syborg.cia Mon May 31 16:05:54 2010 -0700
@@ -51,25 +51,3 @@
asm("bx lr");
}
-//
-//Interrupt Controller Acces Functions
-//
-
-// Enable specified motherboard Int on either the PIC/SIC
-EXPORT_C void __NAKED__ TSyborg::EnableInt(TUint /*anId*/)
-{
- asm("ldr r1, __KHwInt");
- asm("str r0, [r1, #20]");
- asm("bx lr");
-}
-
-// Disable specified motherboard Int on either the PIC/SIC
-EXPORT_C void __NAKED__ TSyborg::DisableInt(TUint /*anId*/)
-{
- asm("ldr r1, __KHwInt");
- asm("str r0, [r1, #16]");
- asm("bx lr");
-
- asm("__KHwInt:");
- asm(".word %a0" : : "i" (TInt)(KHwBaseSic));
-}