From 9c397ea78b759e60928a1595c4df10aaf6107788 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 14 May 2017 13:14:49 +0200 Subject: Improve simplec back-end --- backends/simplec/test00_uut.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/simplec/test00_uut.v') 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); -- cgit v1.2.3