diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2004-01-27 21:36:46 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2004-01-27 21:36:46 -0500 |
commit | 3ccc0b1f968e3efaeccda65e06f862c899678312 (patch) | |
tree | 56244532839df17d2eebf7c8dc2a2b010565a2e8 /dev/tsunami.hh | |
parent | 6f3c09a12c7120b518e1c41d995094538b120ba0 (diff) | |
download | gem5-3ccc0b1f968e3efaeccda65e06f862c899678312.tar.xz |
Add support for RTC to interrupt, HACK in alpha_console temporary
dev/alpha_console.cc:
Fix reference to tlaserclock, HACK FOR NOW
dev/alpha_console.hh:
fix reference to tlaser_clock, HACK FOR NOW
dev/tsunami.cc:
Add proper tsunami chip pointers
dev/tsunami.hh:
add proper tsunami chip pointers add RTC interrupt capabilities
dev/tsunami_cchip.cc:
Add proper Interrupt for RTC
dev/tsunami_cchip.hh:
Add proper interrupt for RTC
dev/tsunami_io.cc:
dev/tsunami_io.hh:
Make RTC interrupt
dev/tsunami_pchip.cc:
dev/tsunami_pchip.hh:
Add back pointer to tsunami
--HG--
extra : convert_revision : 2b0a8616b0bed8d9962ee5ca643dce56b9922d52
Diffstat (limited to 'dev/tsunami.hh')
-rw-r--r-- | dev/tsunami.hh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dev/tsunami.hh b/dev/tsunami.hh index 0ba3cdf67..57e4b8991 100644 --- a/dev/tsunami.hh +++ b/dev/tsunami.hh @@ -46,14 +46,13 @@ class Tsunami : public SimObject static const int Max_CPUs = 4; - IntrControl *intctrl; + IntrControl *intrctrl; // ConsoleListener *listener; SimConsole *cons; ScsiController *scsi; EtherDev *ethernet; - TlaserClock *clock; TsunamiCChip *cchip; TsunamiPChip *pchip; @@ -64,7 +63,7 @@ class Tsunami : public SimObject public: Tsunami(const std::string &name, ScsiController *scsi, - EtherDev *ethernet, TlaserClock *clock, TsunamiCChip *cc, TsunamiPChip *pc, + EtherDev *ethernet, SimConsole *, IntrControl *intctrl, int intrFreq); virtual void serialize(std::ostream &os); |