blob: 2f7b4cde46735a8f1def1c0e3b9811231ffb5499 [file] [log] [blame]
package primitives
import org.scalatest._
import chiseltest._
import chisel3._
class IntrHardwareTest extends FlatSpec with ChiselScalatestTester with Matchers {
behavior of "Interrupt hardware"
it should "just connect without errors" in {
test(new IntrHardware()) {c =>
c.clock.step(1)
}
}
}