1
0

Initial version of fuzzer and simple ram fuzz test

This commit is contained in:
Henry Cook
2016-09-09 17:16:35 -07:00
parent 7760459b76
commit 0671d5d637
4 changed files with 151 additions and 3 deletions

View File

@ -4,12 +4,14 @@ import Chisel._
import junctions._
import cde.{Field, Parameters}
abstract class UnitTest extends Module {
trait HasUnitTestIO {
val io = new Bundle {
val finished = Bool(OUTPUT)
val start = Bool(INPUT)
}
}
abstract class UnitTest extends Module with HasUnitTestIO {
when (io.start) {
printf(s"Started UnitTest ${this.getClass.getSimpleName}\n")
}