Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
36a82f962cfaae15f7028e1e83c9b5a443493383
/
.
/
tests
/
clocks
/
input_attr_clock
/
input_attr_clock.sim.v
blob: 819cb8f97419a6dfbba8b68802ab45ba8473d10b [
file
]
/*
* `input wire a` should be detected as a clock because of the `(* CLOCK *)`
* attribute.
*/
(*
whitebox
*)
module
BLOCK
(
a
,
b
,
o
);
(*
CLOCK
*)
input wire a
;
input wire b
;
output wire o
;
endmodule