Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
037d50d09362cdcec5a109e8509a743f787f0e90
/
.
/
tests
/
clocks
/
input_named_clk
/
input_named_clk.sim.v
blob: 7d5b6193e46ad091bfac52d51c237ac90a1d895f [
file
]
/*
* `input wire clk` should be detected as a clock despite this being a black
* box module.
*/
(*
whitebox
*)
module
BLOCK
(
clk
,
a
,
o
);
input wire clk
;
input wire a
;
output wire o
;
endmodule