Xilinx Virtex-6 Manual page 192

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;
-- LDCE: Transparent latch with Asynchronous Reset and
--
Gate Enable.
--
Virtex-6
-- Xilinx HDL Libraries Guide, version 14.5
LDCE_inst : LDCE
generic map (
INIT => '0') -- Initial value of latch ('0' or '1')
port map (
Q => Q,
-- Data output
CLR => CLR,
-- Asynchronous clear/reset input
D => D,
-- Data input
G => G,
-- Gate input
GE => GE
-- Gate enable input
);
-- End of LDCE_inst instantiation
Verilog Instantiation Template
// LDCE:
Transparent latch with Asynchronous Reset and Gate Enable.
//
Virtex-6
// Xilinx HDL Libraries Guide, version 14.5
LDCE #(
.INIT(1'b0) // Initial value of latch (1'b0 or 1'b1)
) LDCE_inst (
.Q(Q),
// Data output
.CLR(CLR),
// Asynchronous clear/reset input
.D(D),
// Data input
.G(G),
// Gate input
.GE(GE)
// Gate enable input
);
// End of LDCE_inst instantiation
For More Information
See the
Virtex-6 FPGA User Documentation (User Guides and Data
192
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