1
0

add fpu.dec.wen := false when HAVE_FPU is turned off

This commit is contained in:
Yunsup Lee 2012-02-27 14:00:58 -08:00
parent f0588a0052
commit 3d96a2d4f0

View File

@ -137,7 +137,10 @@ class rocketProc(resetSignal: Bool = null) extends Component(resetSignal)
ctrl.io.fpu <> fpu.io.ctrl ctrl.io.fpu <> fpu.io.ctrl
} }
else else
{
ctrl.io.fpu.dec.valid := Bool(false) ctrl.io.fpu.dec.valid := Bool(false)
ctrl.io.fpu.dec.wen := Bool(false)
}
if (HAVE_VEC) if (HAVE_VEC)
{ {