diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-02-05 13:22:02 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-02-05 13:22:02 -0500 |
commit | 09c40bfe4376d12b933116e17b8175f34a194f67 (patch) | |
tree | bee798424c90a5f3f108d92bfe8934e84a7bc05b | |
parent | f4ef613ffda7106147eb2591b9cf8af6609801a5 (diff) | |
download | gem5-09c40bfe4376d12b933116e17b8175f34a194f67.tar.xz |
added some comments
--HG--
extra : convert_revision : eeb0a2c227261ce601ec5e5e8e57b58cbcf22a17
-rw-r--r-- | dev/tsunami.hh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dev/tsunami.hh b/dev/tsunami.hh index 710cb4b49..4edf2113a 100644 --- a/dev/tsunami.hh +++ b/dev/tsunami.hh @@ -83,8 +83,8 @@ class Tsunami : public SimObject */ TsunamiPChip *pchip; - /** Pointer to the Tsunami PCI Config Space - * The config space in tsunami all needs to return + /** Pointer to the PCI Config Space + * The config space in Tsunami all needs to return * -1 if a device is not there. */ PCIConfigAll *pciconfig; @@ -98,14 +98,12 @@ class Tsunami : public SimObject /** * Constructor for the Tsunami Class. * @param name name of the object - * @param scsi pointer to scsi controller object * @param con pointer to the console * @param intrcontrol pointer to the interrupt controller * @param intrFreq frequency that interrupts happen */ - Tsunami(const std::string &name, AdaptecController *scsi, - EtherDev *ethernet, - SimConsole *con, IntrControl *intctrl, int intrFreq); + Tsunami(const std::string &name, EtherDev *ethernet, SimConsole *con, + IntrControl *intctrl, int intrFreq); virtual void serialize(std::ostream &os); virtual void unserialize(Checkpoint *cp, const std::string §ion); |