2012-10-08 05:15:54 +02:00
|
|
|
package rocket
|
|
|
|
import rocket.constants._
|
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
import scala.math._
|
|
|
|
|
|
|
|
//TODO: When compiler bug SI-5604 is fixed in 2.10, change object Constants to
|
|
|
|
// package object rocket and remove import Constants._'s from other files
|
2012-10-08 22:06:45 +02:00
|
|
|
object Constants extends
|
|
|
|
ScalarOpConstants with
|
2012-10-16 23:22:23 +02:00
|
|
|
uncore.constants.MemoryOpConstants with
|
2012-10-08 05:15:54 +02:00
|
|
|
InterruptConstants with
|
2012-10-16 23:22:23 +02:00
|
|
|
RocketDcacheConstants with
|
2012-10-08 05:15:54 +02:00
|
|
|
VectorOpConstants with
|
2012-10-16 23:22:23 +02:00
|
|
|
uncore.constants.MemoryInterfaceConstants
|
2012-10-08 05:15:54 +02:00
|
|
|
{
|
|
|
|
val START_ADDR = 0x2000
|
|
|
|
}
|