1
0

tilelink2: add an intermediate type for simple factories

This commit is contained in:
Wesley W. Terpstra
2016-08-29 17:53:31 -07:00
parent 967d8f108c
commit 5f7711a0c0
4 changed files with 9 additions and 3 deletions

View File

@ -59,7 +59,7 @@ object TLRegisterNode
// register mapped device from a totally abstract register mapped device.
// See GPIO.scala in this directory for an example
abstract class TLRegFactory(address: AddressSet, concurrency: Option[Int], beatBytes: Int) extends TLFactory
abstract class TLRegFactory(address: AddressSet, concurrency: Option[Int], beatBytes: Int) extends TLSimpleFactory
{
val node = TLRegisterNode(address, concurrency, beatBytes)
}