Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
e3a207b87f8b9ace4cdb17239782f91206ba081e
/
.
/
tests
/
clocks
/
output_attr_clock
/
output_attr_clock.sim.v
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