Xilinx Virtex-6 Manual page 128

Hide thumbs Also See for Virtex-6:
Table of Contents

Advertisement

Chapter 4: About Design Elements
VHDL Instantiation Template
Unless they already exist, copy the following two statements and paste them before the entity declaration.
Library UNISIM;
use UNISIM.vcomponents.all;
-- FDRE: Single Data Rate D Flip-Flop with Synchronous Reset and
--
Clock Enable (posedge clk).
--
Virtex-6
-- Xilinx HDL Libraries Guide, version 14.5
FDRE_inst : FDRE
generic map (
INIT => '0') -- Initial value of register ('0' or '1')
port map (
Q => Q,
-- Data output
C => C,
-- Clock input
CE => CE,
-- Clock enable input
R => R,
-- Synchronous reset input
D => D
-- Data input
);
-- End of FDRE_inst instantiation
Verilog Instantiation Template
// FDRE: Single Data Rate D Flip-Flop with Synchronous Reset and
//
Clock Enable (posedge clk).
//
Virtex-6
// Xilinx HDL Libraries Guide, version 14.5
FDRE #(
.INIT(1'b0) // Initial value of register (1'b0 or 1'b1)
) FDRE_inst (
.Q(Q),
// 1-bit Data output
.C(C),
// 1-bit Clock input
.CE(CE),
// 1-bit Clock enable input
.R(R),
// 1-bit Synchronous reset input
.D(D)
// 1-bit Data input
);
// End of FDRE_inst instantiation
For More Information
See the
Virtex-6 FPGA User Documentation (User Guides and Data
128
Sheets).
Virtex-6 Libraries Guide for HDL Designs
www.xilinx.com
UG623 (v 14.5) March 20, 2013

Advertisement

Table of Contents
loading

Table of Contents