summaryrefslogtreecommitdiff
path: root/src/main/scala/Chisel/testers/BasicTester.scala
diff options
context:
space:
mode:
authorchick2016-02-10 14:29:49 -0800
committerchick2016-02-10 14:29:49 -0800
commita9355ba3784e3c5ae611f096a48b4ee5c78464ad (patch)
tree1b1431d32877d3fb3241c661ebf92f1dc80f1ce9 /src/main/scala/Chisel/testers/BasicTester.scala
parentc9d9a313b39fa1d43f794c85ec31d8deb847dc9c (diff)
TesterDriverSpec is simpler and cleaner, extraneous circuit has been removed.
Cleanup comment for finish method in BasicTester, and finishWrapper in TesterDriver.
Diffstat (limited to 'src/main/scala/Chisel/testers/BasicTester.scala')
-rw-r--r--src/main/scala/Chisel/testers/BasicTester.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/scala/Chisel/testers/BasicTester.scala b/src/main/scala/Chisel/testers/BasicTester.scala
index 8f4d60f4..d3e9e7c8 100644
--- a/src/main/scala/Chisel/testers/BasicTester.scala
+++ b/src/main/scala/Chisel/testers/BasicTester.scala
@@ -25,10 +25,10 @@ class BasicTester extends Module {
}
}
- /** Called this class or a subclass's constructor has finished giving
- * developers of chisel testers a post construction hook.
- * For example, a decoupled tester subclassing BasicTester could override finish in order to
- * add flow control logic around loading the device under test's input io from a Vec of values
+ /** The finish method provides a hook that subclasses of BasicTester can use to
+ * alter a circuit after their constructor has been called.
+ * For example, a specialized tester subclassing BasicTester could override finish in order to
+ * add flow control logic for a decoupled io port of a device under test
*/
def finish(): Unit = {}
}