This commit is contained in:
2024-07-05 19:15:16 +03:00
parent 492a55d360
commit c1f0851a45
136 changed files with 11599 additions and 0 deletions

20
tests/test/test.v Normal file
View File

@ -0,0 +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);
*/
endmodule