rearrangement

This commit is contained in:
2024-12-01 02:01:08 +03:00
parent 7466f916d3
commit 0237c7bcb2
277 changed files with 56884 additions and 56884 deletions

View File

@ -1,20 +1,20 @@
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);
*/
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