diff options
Diffstat (limited to 'src/dev/mips')
-rwxr-xr-x | src/dev/mips/malta.cc | 11 | ||||
-rwxr-xr-x | src/dev/mips/malta.hh | 6 |
2 files changed, 0 insertions, 17 deletions
diff --git a/src/dev/mips/malta.cc b/src/dev/mips/malta.cc index df949c2cf..277633c6b 100755 --- a/src/dev/mips/malta.cc +++ b/src/dev/mips/malta.cc @@ -54,21 +54,10 @@ using namespace TheISA; Malta::Malta(const Params *p) : Platform(p), system(p->system) { -#if FULL_SYSTEM //XXX No platform pointer on the system object in SE mode. - // set the back pointer from the system to myself - system->platform = this; -#endif - for (int i = 0; i < Malta::Max_CPUs; i++) intr_sum_type[i] = 0; } -Tick -Malta::intrFrequency() -{ - return io->frequency(); -} - void Malta::postConsoleInt() { diff --git a/src/dev/mips/malta.hh b/src/dev/mips/malta.hh index 69ae004b3..e612fb295 100755 --- a/src/dev/mips/malta.hh +++ b/src/dev/mips/malta.hh @@ -92,12 +92,6 @@ class Malta : public Platform Malta(const Params *p); /** - * Return the interrupting frequency to MipsAccess - * @return frequency of RTC interrupts - */ - virtual Tick intrFrequency(); - - /** * Cause the cpu to post a serial interrupt to the CPU. */ virtual void postConsoleInt(); |