summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/Stack.scala
diff options
context:
space:
mode:
authorducky2016-11-17 13:01:03 -0800
committerducky2016-11-21 13:31:12 -0800
commit54d3f8dc054e55dfbd01d1aa034169a3dabe89f2 (patch)
tree7f6f9de04de6eb08878ac46be339fefc2a71395f /src/test/scala/chiselTests/Stack.scala
parentcd904da0aa0e96ba679906a3ee5dbdc068eace48 (diff)
Restyle a lot of test code, mainly with regex
Diffstat (limited to 'src/test/scala/chiselTests/Stack.scala')
-rw-r--r--src/test/scala/chiselTests/Stack.scala20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/test/scala/chiselTests/Stack.scala b/src/test/scala/chiselTests/Stack.scala
index a72af928..ce8fd9fc 100644
--- a/src/test/scala/chiselTests/Stack.scala
+++ b/src/test/scala/chiselTests/Stack.scala
@@ -12,23 +12,23 @@ class ChiselStack(val depth: Int) extends Module {
val push = Input(Bool())
val pop = Input(Bool())
val en = Input(Bool())
- val dataIn = Input(UInt.width(32))
- val dataOut = Output(UInt.width(32))
+ val dataIn = Input(UInt(32.W))
+ val dataOut = Output(UInt(32.W))
})
- val stack_mem = Mem(depth, UInt.width(32))
+ val stack_mem = Mem(depth, UInt(32.W))
val sp = Reg(init = UInt(0, width = log2Up(depth + 1)))
- val out = Reg(init = UInt(0, width = 32))
+ val out = Reg(init = 0.U(32.W))
when (io.en) {
- when(io.push && (sp < UInt(depth))) {
+ when(io.push && (sp < depth.asUInt)) {
stack_mem(sp) := io.dataIn
- sp := sp +% UInt(1)
- } .elsewhen(io.pop && (sp > UInt(0))) {
- sp := sp -% UInt(1)
+ sp := sp +% 1.U
+ } .elsewhen(io.pop && (sp > 0.U)) {
+ sp := sp -% 1.U
}
- when (sp > UInt(0)) {
- out := stack_mem(sp -% UInt(1))
+ when (sp > 0.U) {
+ out := stack_mem(sp -% 1.U)
}
}
io.dataOut := out