blob: 6fd074734244df7c26ca0d48c8fc2d5e9c1a7931 [file] [log] [blame] [edit]
// Simple passthrough box to for DI mux selection on dual port DRAMs.
(* lib_whitebox *)
module DI64_STUB(
input DI,
output DO
);
(* DELAY_CONST_DI="0" *)
wire DO;
assign DO = DI;
endmodule