aboutsummaryrefslogtreecommitdiffstats
path: root/backends/simplec/test00_uut.v
diff options
context:
space:
mode:
Diffstat (limited to 'backends/simplec/test00_uut.v')
-rw-r--r--backends/simplec/test00_uut.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/simplec/test00_uut.v b/backends/simplec/test00_uut.v
index fd634cf82..744dbe9e3 100644
--- a/backends/simplec/test00_uut.v
+++ b/backends/simplec/test00_uut.v
@@ -1,7 +1,7 @@
-module test(input [31:0] a, b, c, output [31:0] x, y, z);
+module test(input [31:0] a, b, c, output [31:0] x, y, z, w);
unit_x unit_x_inst (.a(a), .b(b), .c(c), .x(x));
unit_y unit_y_inst (.a(a), .b(b), .c(c), .y(y));
- assign z = a ^ b ^ c;
+ assign z = a ^ b ^ c, w = z;
endmodule
module unit_x(input [31:0] a, b, c, output [31:0] x);