aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/attrib03_parameter.v
diff options
context:
space:
mode:
authorClaire Xenia Wolf <claire@clairexen.net>2021-09-22 17:34:20 +0200
committerClaire Xenia Wolf <claire@clairexen.net>2021-09-23 14:54:28 +0200
commit15fb0107dcdfcf98c56f229727c7cd701ff9b4b3 (patch)
tree53d8c5a6530545103701e0842d926b40a657748c /tests/simple/attrib03_parameter.v
parent3931b3a03f65965daca20b1228d8882192e74650 (diff)
downloadyosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.tar.gz
yosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.tar.bz2
yosys-15fb0107dcdfcf98c56f229727c7cd701ff9b4b3.zip
Fix "make vgtest" so it runs to the end (but now it fails ;)
Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
Diffstat (limited to 'tests/simple/attrib03_parameter.v')
-rw-r--r--tests/simple/attrib03_parameter.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/simple/attrib03_parameter.v b/tests/simple/attrib03_parameter.v
index 562d225cd..d2ae98978 100644
--- a/tests/simple/attrib03_parameter.v
+++ b/tests/simple/attrib03_parameter.v
@@ -1,4 +1,4 @@
-module bar(clk, rst, inp, out);
+module attrib03_bar(clk, rst, inp, out);
(* bus_width *)
parameter WIDTH = 2;
@@ -17,12 +17,12 @@ module bar(clk, rst, inp, out);
endmodule
-module foo(clk, rst, inp, out);
+module attrib03_foo(clk, rst, inp, out);
input wire clk;
input wire rst;
input wire [7:0] inp;
output wire [7:0] out;
- bar # (.WIDTH(8)) bar_instance (clk, rst, inp, out);
+ attrib03_bar # (.WIDTH(8)) bar_instance (clk, rst, inp, out);
endmodule