diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-06-01 17:36:38 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-06-01 17:36:38 -0400 |
commit | 6010f637ff125b25ce7ee0189a08e55b9b2de331 (patch) | |
tree | 41acc26973bb7f98ba19f8f5a45e0778529cff57 /dev/platform.hh | |
parent | caf5cad959d8c75095590e0e6e1a9ed1f243366e (diff) | |
download | gem5-6010f637ff125b25ce7ee0189a08e55b9b2de331.tar.xz |
Removed dynamic cast to get interrupt frequency and replaced with a
virtual function in alphaaccess.cc
dev/alpha_console.cc:
dev/alpha_console.hh:
dev/platform.hh:
dev/tsunami.cc:
dev/tsunami.hh:
dev/tsunami_io.hh:
Removed dynamic cast to get interrupt frequency and replaced with a
virtual function
--HG--
extra : convert_revision : 01f514a33d8f76c6527ab25a713d5c86f9fd646e
Diffstat (limited to 'dev/platform.hh')
-rw-r--r-- | dev/platform.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dev/platform.hh b/dev/platform.hh index 407f58406..f77b520a3 100644 --- a/dev/platform.hh +++ b/dev/platform.hh @@ -60,6 +60,7 @@ class Platform : public SimObject virtual ~Platform() {} virtual void postConsoleInt() = 0; virtual void clearConsoleInt() = 0; + virtual Tick intrFrequency() = 0; }; #endif // __PLATFORM_HH_ |