3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00
yosys/docs/resources/PRESENTATION_ExAdv/addshift_test.v
2023-08-07 12:58:40 +12:00

6 lines
102 B
Verilog

module test (A, B, X, Y);
input [7:0] A, B;
output [7:0] X = A + B;
output [7:0] Y = A + A;
endmodule