1
0

minor tweaks for eos18 tapeout (SRAM r/w port ordering, etc)

This commit is contained in:
Rimas Avizienis
2013-01-23 19:27:53 -08:00
parent 6b00e7ff74
commit 63060bc0a8
3 changed files with 11 additions and 6 deletions

View File

@ -603,7 +603,10 @@ class Control(implicit conf: RocketConfiguration) extends Component
class Scoreboard
{
val r = Reg(resetVal = Bits(0))
// val r = Reg(resetVal = Bits(0))
// RIMAS: explicitly set width to 32, otherwise Chisel would set it to 1024
// and cause a ton of warnings during synthesis
val r = Reg(resetVal = Bits(0,32))
var next = r
var ens = Bool(false)
def apply(addr: UFix) = r(addr)