Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
037d50d09362cdcec5a109e8509a743f787f0e90
/
.
/
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