1
0

Chisel3 compatibility: use BitPat for don't-cares

This one's hella ugly, but for the time being, idgaf.
This commit is contained in:
Andrew Waterman
2015-07-28 02:48:49 -07:00
parent f2dcc40e67
commit 049fc8dc24
9 changed files with 253 additions and 266 deletions

View File

@ -57,7 +57,7 @@ object CSR
{
// commands
val SZ = 3
val X = UInt.DC(SZ)
val X = BitPat.DC(SZ)
val N = UInt(0,SZ)
val W = UInt(1,SZ)
val S = UInt(2,SZ)