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