verilog/test/test.v
2024-04-13 05:48:55 +03:00

20 lines
211 B
Verilog

module test(
input A,
input B,
output LED1,
output LED2,
output LED3
);
assign LED1 = A;
assign LED2 = B;
assign LED3 = A | B;
/*
buf(LED1, A);
buf(LED2, B);
and(LED3, A, B);
*/
endmodule