// -- Description: Dedicated output register cells for transmitting dual data rate // signals from FPGA. Refer to UG768. `timescale 1ns / 1ns // No sign handling here, and the DDR is offset binary. // So the caller needs to provide offset binary inputs. module ddr_cells( clk, data0, data1, ddr ); parameter width=16; input clk; input [width-1:0] data0; input [width-1:0] data1; output [width-1:0] ddr; wire rst=0; wire set=0; wire ce=1; `ifndef SIMULATE genvar ix; generate for (ix=0; ix