1
0

Removed RocketCoreParameters from use.

- The nbdache (among others?) use CoreParameters, which has nothing to do with RetireWidth requirements.
   - This conflicts with other cores which uses nbdcache.
   - RocketCoreParameters may be unneccessary, and the require() check can be moved deeper into Rocket.
This commit is contained in:
Christopher Celio 2014-09-26 05:14:50 -07:00
parent 868e747656
commit f917810061

View File

@ -35,8 +35,8 @@ abstract trait RocketCoreParameters extends CoreParameters
require(params(RetireWidth) == 1) // for now...
}
abstract class CoreBundle extends Bundle with RocketCoreParameters
abstract class CoreModule extends Module with RocketCoreParameters
abstract class CoreBundle extends Bundle with CoreParameters
abstract class CoreModule extends Module with CoreParameters
class RocketIO extends Bundle
{