1
0
Fork 0

debug: Remove older version of JTAG interface as it is superseded by the one in jtag package.

This commit is contained in:
Megan Wachs 2017-03-27 21:25:37 -07:00
parent cbc8d2400a
commit d6ab929c41
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
// See LICENSE.SiFive for license details.
package junctions
import Chisel._
import config._
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(INPUT)) else None
override def cloneType = new JTAGIO(drvTdo).asInstanceOf[this.type]
}