summaryrefslogtreecommitdiff
path: root/src/dev/x86/i8259.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 23:22:58 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 23:22:58 -0700
commit8e664f395965b7ff5945d7665eda28cf5592a10a (patch)
treedb66b55e611fb77297854167cde1d6a6a57425f2 /src/dev/x86/i8259.hh
parente3004c579fcd7c3f34dfcbd90169c5aa9218a65b (diff)
downloadgem5-8e664f395965b7ff5945d7665eda28cf5592a10a.tar.xz
X86: Make the I8259 PIC accept a specific EOI command.
Diffstat (limited to 'src/dev/x86/i8259.hh')
-rw-r--r--src/dev/x86/i8259.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dev/x86/i8259.hh b/src/dev/x86/i8259.hh
index 371a27874..6f6d3f038 100644
--- a/src/dev/x86/i8259.hh
+++ b/src/dev/x86/i8259.hh
@@ -73,6 +73,9 @@ class I8259 : public BasicPioDevice, public IntDev
bool expectICW4;
int initControlWord;
+ void requestInterrupt(int line);
+ void handleEOI(int line);
+
public:
typedef I8259Params Params;