Initial commit.
[freedom-sifive.git] / src / main / scala / unleashed / u500vc707devkit / vc707reset.scala
1 // See LICENSE for license details.
2 package sifive.freedom.unleashed.u500vc707devkit
3
4 import Chisel._
5
6 //scalastyle:off
7 //turn off linter: blackbox name must match verilog module
8 class vc707reset() extends BlackBox
9 {
10 val io = new Bundle{
11 val areset = Bool(INPUT)
12 val clock1 = Clock(INPUT)
13 val reset1 = Bool(OUTPUT)
14 val clock2 = Clock(INPUT)
15 val reset2 = Bool(OUTPUT)
16 val clock3 = Clock(INPUT)
17 val reset3 = Bool(OUTPUT)
18 val clock4 = Clock(INPUT)
19 val reset4 = Bool(OUTPUT)
20 }
21 }
22 //scalastyle:on