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