4c595d175c
* Refactors package hierarchy. Additionally: - Removes legacy ground tests and configs - Removes legacy bus protocol implementations - Removes NTiles - Adds devices package - Adds more functions to util package
13 lines
347 B
Scala
13 lines
347 B
Scala
// See LICENSE.SiFive for license details.
|
|
|
|
package freechips.rocketchip.groundtest
|
|
|
|
import freechips.rocketchip.util.GeneratorApp
|
|
|
|
object Generator extends GeneratorApp {
|
|
val longName = names.topModuleProject + "." + names.configs
|
|
generateFirrtl
|
|
generateTestSuiteMakefrags // TODO: Needed only for legacy make targets
|
|
generateArtefacts
|
|
}
|