3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-23 12:23:32 +00:00

Edge case tests.

This commit is contained in:
nella 2026-03-13 12:33:26 +01:00
parent 8d0ecbcdc0
commit b6ea0bb4cc
10 changed files with 199 additions and 0 deletions

View file

@ -0,0 +1,6 @@
module add_multi_const(
input [7:0] x,
output [7:0] y
);
assign y = 8'd1 + 8'd2 + 8'd3 + x;
endmodule