diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2022-03-30 17:29:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 17:29:40 +0200 |
commit | 18fb73fd89f492fd285ff379b12082c4b8b68d4a (patch) | |
tree | 5bdccd64dff79b97c3628da81e898dbe96129f89 /tests/simple/module_scope.v | |
parent | 0921e5b9a40370cb09ee419d12d0eecc40d1adec (diff) | |
parent | bbf65702a1859d7216f71e1df1193dca6c49cabf (diff) | |
download | yosys-18fb73fd89f492fd285ff379b12082c4b8b68d4a.tar.gz yosys-18fb73fd89f492fd285ff379b12082c4b8b68d4a.tar.bz2 yosys-18fb73fd89f492fd285ff379b12082c4b8b68d4a.zip |
Merge pull request #3259 from YosysHQ/micko/verific_valgrind
Fix valgrind tests when using verific
Diffstat (limited to 'tests/simple/module_scope.v')
-rw-r--r-- | tests/simple/module_scope.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/simple/module_scope.v b/tests/simple/module_scope.v index d07783912..ceeab7311 100644 --- a/tests/simple/module_scope.v +++ b/tests/simple/module_scope.v @@ -3,7 +3,7 @@ module module_scope_Example(o1, o2); parameter [31:0] v1 = 10; parameter [31:0] v2 = 20; - output [31:0] o1, o2; + output wire [31:0] o1, o2; assign module_scope_Example.o1 = module_scope_Example.v1; assign module_scope_Example.o2 = module_scope_Example.v2; endmodule @@ -11,14 +11,14 @@ endmodule module module_scope_ExampleLong(o1, o2); parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1 = 10; parameter [31:0] ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2 = 20; - output [31:0] o1, o2; + output wire [31:0] o1, o2; assign module_scope_ExampleLong.o1 = module_scope_ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum1; assign module_scope_ExampleLong.o2 = module_scope_ExampleLong.ThisIsAnExtremelyLongParameterNameToTriggerTheSHA1Checksum2; endmodule module module_scope_top( - output [31:0] a1, a2, b1, b2, c1, c2, - output [31:0] d1, d2, e1, e2, f1, f2 + output wire [31:0] a1, a2, b1, b2, c1, c2, + output wire [31:0] d1, d2, e1, e2, f1, f2 ); module_scope_Example a(a1, a2); module_scope_Example #(1) b(b1, b2); |