1
0

Updated chisel removes ^^ from language. Removed from rocket source, updated jar.

This commit is contained in:
Henry Cook
2012-01-23 09:51:35 -08:00
parent e7bf07d55e
commit 8766438bb9
7 changed files with 36 additions and 35 deletions

View File

@ -102,8 +102,8 @@ class Arbiter[T <: Data](n: Int)(data: => T) extends Component {
for (i <- 1 to n-1)
vout = vout || io.in(i).valid
vout ^^ io.out.valid
dout ^^ io.out.bits
vout <> io.out.valid
dout <> io.out.bits
}
class ioPriorityDecoder(in_width: Int, out_width: Int) extends Bundle