blob: 3dfbb52b7876525aa3237fc5f2bb73e3e82874f2 [file] [log] [blame] [edit]
`timescale 1ps/1ps
(* 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