1
0
mirror of synced 2026-05-25 14:36:42 +00:00
Files
2014-02-18 19:51:03 +01: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