refactor: simplify project structure

This commit is contained in:
Côme ALLART
2022-11-18 23:19:11 +01:00
parent 9ccca0f64a
commit 4849860e14
10 changed files with 36 additions and 33 deletions

View File

@@ -0,0 +1,16 @@
package projectname
import spinal.core._
import spinal.core.sim._
object Config {
def spinal = SpinalConfig(
targetDirectory = "hw/gen",
defaultConfigForClockDomains = ClockDomainConfig(
resetActiveLevel = HIGH
),
onlyStdLogicVectorAtTopLevelIo = true
)
def sim = SimConfig.withConfig(spinal).withFstWave
}