summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 70adb7af9..53e6fdb7b 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -66,6 +66,10 @@ namespace Core::Timing {
66class CoreTiming; 66class CoreTiming;
67} 67}
68 68
69namespace Core::Hardware {
70class InterruptManager;
71}
72
69namespace Core { 73namespace Core {
70 74
71class ARM_Interface; 75class ARM_Interface;
@@ -230,6 +234,12 @@ public:
230 /// Provides a constant reference to the core timing instance. 234 /// Provides a constant reference to the core timing instance.
231 const Timing::CoreTiming& CoreTiming() const; 235 const Timing::CoreTiming& CoreTiming() const;
232 236
237 /// Provides a reference to the interrupt manager instance.
238 Core::Hardware::InterruptManager& InterruptManager();
239
240 /// Provides a constant reference to the interrupt manager instance.
241 const Core::Hardware::InterruptManager& InterruptManager() const;
242
233 /// Provides a reference to the kernel instance. 243 /// Provides a reference to the kernel instance.
234 Kernel::KernelCore& Kernel(); 244 Kernel::KernelCore& Kernel();
235 245