blob: bdf47471e799bf33cd71146fef92e971a4f4c3c8 [file]
/*
* `output wire o` should be detected as a clock because of the `(* CLOCK *)`
* attribute.
*/
(* whitebox *)
module BLOCK(a, b, o);
input wire a;
input wire b;
(* CLOCK *)
output wire o;
endmodule