1
0

Move files after the file reorganization

This commit is contained in:
Megan Wachs
2016-08-19 16:11:41 -07:00
parent 48c5ec3551
commit 723cc063cb
2 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package junctions
import Chisel._
import cde.{Parameters}
class JtagIO(drvTdo : Boolean = false) extends Bundle {
val TCK = Clock(OUTPUT)
val TMS = Bool(OUTPUT)
val TDI = Bool(OUTPUT)
val TDO = Bool(INPUT)
val TRST = Bool(OUTPUT)
val DRV_TDO = if (drvTdo) Some(Bool(OUTPUT)) else None
override def cloneType = new JtagIO(drvTdo).asInstanceOf[this.type]
}