3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-24 16:12:33 +00:00

Actual merge here

This commit is contained in:
Akash Levy 2025-04-06 18:53:43 -07:00
parent 69ce16c4a0
commit 0dab4308a3
40 changed files with 720 additions and 279 deletions

16
tests/select/boxes.v Normal file
View file

@ -0,0 +1,16 @@
module top(input a, b, output o);
assign o = a & b;
endmodule
(* blackbox *)
module bb(input a, b, output o);
assign o = a | b;
specify
(a => o) = 1;
endspecify
endmodule
(* whitebox *)
module wb(input a, b, output o);
assign o = a ^ b;
endmodule