1
0
Fork 0

add ExampleSmallConfig for README

This commit is contained in:
Yunsup Lee 2014-10-07 02:05:10 -07:00
parent ae9b78d9ef
commit 702ddabe26
1 changed files with 4 additions and 2 deletions

View File

@ -144,7 +144,7 @@ class FPGAConfig extends ChiselConfig (
class DefaultFPGAConfig extends ChiselConfig(new FPGAConfig ++ new DefaultConfig)
class FPGASmallConfig extends ChiselConfig (
class SmallConfig extends ChiselConfig (
topDefinitions = { (pname,site,here) => pname match {
case BuildFPU => None
case FastMulDiv => false
@ -160,4 +160,6 @@ class FPGASmallConfig extends ChiselConfig (
}
)
class DefaultFPGASmallConfig extends ChiselConfig(new FPGASmallConfig ++ new DefaultFPGAConfig)
class DefaultFPGASmallConfig extends ChiselConfig(new SmallConfig ++ new DefaultFPGAConfig)
class ExampleSmallConfig extends ChiselConfig(new SmallConfig ++ new DefaultConfig)