blob: e0243a83e5a100d3ef2cf0bfc73ab71c20129b04 [file] [log] [blame] [edit]
`timescale 1ns/10ps
(* whitebox *)
// This cell is necessary only for post-pnr simulation
// as it is a cell emitted by VPR and not part of the
// PP3 architecture
module fpga_interconnect(
datain,
dataout
);
input wire datain;
output wire dataout;
specify
(datain=>dataout)=(0,0);
endspecify
assign dataout = datain;
endmodule