Sign in
foss-fpga-tools
/
symbiflow-arch-defs
/
refs/heads/bot-conda-lock-update
/
.
/
xilinx
/
common
/
primitives
/
slicem
/
di64_stub.sim.v
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