diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-05-14 13:14:49 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-05-14 13:14:49 +0200 |
commit | 9c397ea78b759e60928a1595c4df10aaf6107788 (patch) | |
tree | 79d02bd04ab41a4e357ad1853a8c3906b02cf8a8 /backends/simplec/test00_uut.v | |
parent | 628daab277b3ac1db06902bd0d5105955bdd1e88 (diff) | |
download | yosys-9c397ea78b759e60928a1595c4df10aaf6107788.tar.gz yosys-9c397ea78b759e60928a1595c4df10aaf6107788.tar.bz2 yosys-9c397ea78b759e60928a1595c4df10aaf6107788.zip |
Improve simplec back-end
Diffstat (limited to 'backends/simplec/test00_uut.v')
-rw-r--r-- | backends/simplec/test00_uut.v | 4 |
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); |