diff -r 62a56fb37080 -r 8e8bf3dcfd6b baseport/syborg/specific/syborg.cpp --- a/baseport/syborg/specific/syborg.cpp Tue Apr 13 18:30:00 2010 +0100 +++ b/baseport/syborg/specific/syborg.cpp Mon May 31 16:05:54 2010 -0700 @@ -128,3 +128,18 @@ return 0; } +// +//Interrupt Controller Acces Functions +// + +// Enable specified motherboard Int on either the PIC/SIC +EXPORT_C void TSyborg::EnableInt(TUint anId) +{ + WriteReg(KHwBaseSic, 5, anId); +} + +// Disable specified motherboard Int on either the PIC/SIC +EXPORT_C void TSyborg::DisableInt(TUint anId) +{ + WriteReg(KHwBaseSic, 4, anId); +}