summaryrefslogtreecommitdiff
path: root/dev/platform.hh
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2004-10-25 18:14:13 -0400
committerAli Saidi <saidi@eecs.umich.edu>2004-10-25 18:14:13 -0400
commit3402411661caff075890c20a6c59fa471d5e68ac (patch)
tree1fdff9005fd8e020217a21bdfac672ff0885b99f /dev/platform.hh
parenteaf66f46588cdfd8a91b93821406e1d797c6d1fb (diff)
downloadgem5-3402411661caff075890c20a6c59fa471d5e68ac.tar.xz
changes to make interrupts part of the platform rather than tsunami
specific --HG-- extra : convert_revision : f51788dd41c23f13b253268bb2b286a5225ef087
Diffstat (limited to 'dev/platform.hh')
-rw-r--r--dev/platform.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/platform.hh b/dev/platform.hh
index 7920480bc..0c90e06ba 100644
--- a/dev/platform.hh
+++ b/dev/platform.hh
@@ -65,6 +65,8 @@ class Platform : public SimObject
virtual void postConsoleInt() = 0;
virtual void clearConsoleInt() = 0;
virtual Tick intrFrequency() = 0;
+ virtual void postPciInt(int line) = 0;
+ virtual void clearPciInt(int line) = 0;
};
#endif // __PLATFORM_HH_