aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/ChirrtlSpec.scala
diff options
context:
space:
mode:
authorJim Lawson2016-12-08 09:25:42 -0800
committerJack Koenig2016-12-08 09:25:42 -0800
commitcfb3a48986500422cbf6ba8887030dee3a973933 (patch)
tree61318120adf506e6110f861a28a56801f43a0813 /src/test/scala/firrtlTests/ChirrtlSpec.scala
parentd6f8b4c9b8d602d669497833901bd9c80f2340df (diff)
Clk2clock - rename the implicit "clk" module input "clock" (#387)
* Rename implict module "clk" input to "clock". This doesn't rename all the "self-contained" test instances. nor the memory "clk" enables, nor the implict module "clk"s in the regress .fir files. * Consistency: rename implict module "clk" input to "clock" in "self-contained" test instances. This doesn't rename the memory "clk" enables, nor the implict module "clk"s in the regress .fir files.
Diffstat (limited to 'src/test/scala/firrtlTests/ChirrtlSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/ChirrtlSpec.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/scala/firrtlTests/ChirrtlSpec.scala b/src/test/scala/firrtlTests/ChirrtlSpec.scala
index 3b360de6..0ae112f0 100644
--- a/src/test/scala/firrtlTests/ChirrtlSpec.scala
+++ b/src/test/scala/firrtlTests/ChirrtlSpec.scala
@@ -35,9 +35,9 @@ class ChirrtlSpec extends FirrtlFlatSpec {
val input =
"""circuit Unit :
| module Unit :
- | input clk : Clock
+ | input clock : Clock
| smem ram : UInt<32>[128]
- | node newClock = clk
+ | node newClock = clock
| infer mport x = ram[UInt(2)], newClock
| x <= UInt(3)
| when UInt(1) :
@@ -53,9 +53,9 @@ class ChirrtlSpec extends FirrtlFlatSpec {
val input =
"""circuit Unit :
| module Unit :
- | input clk : Clock
+ | input clock : Clock
| smem ram : UInt<32>[128]
- | node newClock = clk
+ | node newClock = clock
| infer mport x = ram[UInt(2)], newClock
| x <= UInt(3)
| when UInt(1) :