diff options
| author | Jim Lawson | 2016-12-08 09:25:42 -0800 |
|---|---|---|
| committer | Jack Koenig | 2016-12-08 09:25:42 -0800 |
| commit | cfb3a48986500422cbf6ba8887030dee3a973933 (patch) | |
| tree | 61318120adf506e6110f861a28a56801f43a0813 /src/test/scala/firrtlTests/fixed | |
| parent | d6f8b4c9b8d602d669497833901bd9c80f2340df (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/fixed')
| -rw-r--r-- | src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala | 4 | ||||
| -rw-r--r-- | src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala b/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala index 9b35a19a..2750ee71 100644 --- a/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala +++ b/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala @@ -264,7 +264,7 @@ class FixedTypeInferenceSpec extends FirrtlFlatSpec { """ |circuit Unit : | module Unit : - | input clk : Clock + | input clock : Clock | input reset : UInt<1> | input io_in : Fixed<6><<0>> | output io_out : Fixed<6><<0>> @@ -277,7 +277,7 @@ class FixedTypeInferenceSpec extends FirrtlFlatSpec { """ |circuit Unit : | module Unit : - | input clk : Clock + | input clock : Clock | input reset : UInt<1> | input io_in : SInt<6> | output io_out : SInt<6> diff --git a/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala b/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala index 6bd06f10..4910cb5e 100644 --- a/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala +++ b/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala @@ -167,7 +167,7 @@ class RemoveFixedTypeSpec extends FirrtlFlatSpec { """ |circuit Unit : | module Unit : - | input clk : Clock + | input clock : Clock | input reset : UInt<1> | input io_in : Fixed<6><<0>> | output io_out : Fixed |
