summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/SIntOps.scala
diff options
context:
space:
mode:
authorJim Lawson2016-01-05 14:18:50 -0800
committerJim Lawson2016-01-05 14:18:50 -0800
commit3fb693ea5209c402ca944086713684fa53e8c34c (patch)
tree5ecacd4722b3e5931491569d17dc4ccb00814200 /src/test/scala/chiselTests/SIntOps.scala
parenta98dab0c5726434c2aaa457787ef32c380c5556d (diff)
Scalastyle fixes - whitespace or comments only.
Diffstat (limited to 'src/test/scala/chiselTests/SIntOps.scala')
-rw-r--r--src/test/scala/chiselTests/SIntOps.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/SIntOps.scala b/src/test/scala/chiselTests/SIntOps.scala
index 4a87a2d2..0835fb4d 100644
--- a/src/test/scala/chiselTests/SIntOps.scala
+++ b/src/test/scala/chiselTests/SIntOps.scala
@@ -29,7 +29,7 @@ class SIntOps extends Module {
io.addout := a +% b
io.subout := a -% b
- // TODO:
+ // TODO:
//io.timesout := (a * b)(15, 0)
//io.divout := a / Mux(b === SInt(0), SInt(1), b)
//io.divout := (a / b)(15, 0)
@@ -83,7 +83,7 @@ class SIntOpsTester(c: SIntOps) extends Tester(c) {
*/
class SIntOpsSpec extends ChiselPropSpec {
-
+
property("SIntOps should elaborate") {
elaborate { new SIntOps }
}