diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 13:54:57 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 13:54:57 -0700 |
commit | 3a1905157eec2ed80eaf2ddb8be69cb2f509dfee (patch) | |
tree | 036a4079a56b09dab9492bc926b426cb773ce604 /src/dev/x86/intdev.hh | |
parent | c35da8e495e9f2697a252e8e828e6d7760a8a2db (diff) | |
download | gem5-3a1905157eec2ed80eaf2ddb8be69cb2f509dfee.tar.xz |
X86: Create a mechanism for the IO APIC to access I8259 vectors.
Diffstat (limited to 'src/dev/x86/intdev.hh')
-rw-r--r-- | src/dev/x86/intdev.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dev/x86/intdev.hh b/src/dev/x86/intdev.hh index d36ed462a..ba9a073a4 100644 --- a/src/dev/x86/intdev.hh +++ b/src/dev/x86/intdev.hh @@ -122,6 +122,12 @@ class IntPin : public SimObject public: typedef X86IntPinParams Params; + IntDev * + getDevice() const + { + return device; + } + const Params * params() const { |