#include "cpu/intr_control.hh"
#include "dev/console.hh"
#include "dev/etherdev.hh"
-#include "dev/scsi_ctrl.hh"
+#include "dev/adaptec_ctrl.hh"
#include "dev/tlaser_clock.hh"
#include "dev/tsunami_cchip.hh"
#include "dev/tsunami_pchip.hh"
using namespace std;
-Tsunami::Tsunami(const string &name, ScsiController *s, EtherDev *e,
+Tsunami::Tsunami(const string &name, AdaptecController *s, EtherDev *e,
SimConsole *con, IntrControl *ic, int intr_freq)
: SimObject(name), intrctrl(ic), cons(con), scsi(s), ethernet(e),
interrupt_frequency(intr_freq)
BEGIN_DECLARE_SIM_OBJECT_PARAMS(Tsunami)
- SimObjectParam<ScsiController *> scsi;
+ SimObjectParam<AdaptecController *> scsi;
SimObjectParam<EtherDev *> ethernet;
SimObjectParam<SimConsole *> cons;
SimObjectParam<IntrControl *> intrctrl;
class IntrControl;
class ConsoleListener;
class SimConsole;
-class ScsiController;
+class AdaptecController;
class TlaserClock;
class EtherDev;
class TsunamiCChip;
SimConsole *cons;
/** Pointer to the SCSI controller device */
- ScsiController *scsi;
+ AdaptecController *scsi;
/** Pointer to the ethernet controller device */
EtherDev *ethernet;
* Constructor for the Tsunami Class.
* @param
*/
- Tsunami(const std::string &name, ScsiController *scsi,
+ Tsunami(const std::string &name, AdaptecController *scsi,
EtherDev *ethernet,
SimConsole *, IntrControl *intctrl, int intrFreq);