Add WithNoUART fragment (#536)

This commit is contained in:
Jerry Zhao
2020-04-29 01:24:25 -07:00
committed by GitHub
parent 959c5a0726
commit 24fada1d9c

View File

@@ -53,7 +53,11 @@ class WithUART extends Config((site, here, up) => {
})
class WithNoGPIO extends Config((site, here, up) => {
case PeripheryGPIOKey => Seq()
case PeripheryGPIOKey => Nil
})
class WithNoUART extends Config((site, here, up) => {
case PeripheryUARTKey => Nil
})
class WithL2TLBs(entries: Int) extends Config((site, here, up) => {