mirror of https://github.com/YosysHQ/yosys.git
17 lines
250 B
Verilog
17 lines
250 B
Verilog
|
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
|