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