Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
037d50d09362cdcec5a109e8509a743f787f0e90
/
.
/
tests
/
logicbox
/
logicbox.sim.v
blob: 6ac2b93f6bdf8dbf86407871cf35e5328228b3e4 [
file
]
(*
whitebox
*)
module
LOGICBOX
(
I
,
O
);
input wire I
;
// we need this delay to make VPR see
// the connection between I and O
(*
DELAY_CONST_I
=
"30e-12"
*)
output wire O
;
assign O
=
I
;
endmodule