Xilinx Virtex-6 Manual page 266

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;
-- MUXF7_L: CLB MUX to tie two LUT6's together with local output
--
Virtex-6
-- Xilinx HDL Libraries Guide, version 14.5
MUXF7_L_inst : MUXF7_L
port map (
LO => LO,
-- Output of MUX to local routing
I0 => I0,
-- Input (tie to MUXF6 LO out or LUT6 O6 pin)
I1 => I1,
-- Input (tie to MUXF6 LO out or LUT6 O6 pin)
S => S
-- Input select to MUX
);
-- End of MUXF7_L_inst instantiation
Verilog Instantiation Template
// MUXF7_L: CLB MUX to tie two LUT6's together with local output
//
Virtex-6
// Xilinx HDL Libraries Guide, version 14.5
MUXF7_L MUXF7_L_inst (
.LO(LO),
// Output of MUX to local routing
.I0(I0),
// Input (tie to LUT6 O6 pin)
.I1(I1),
// Input (tie to LUT6 O6 pin)
.S(S)
// Input select to MUX
);
// End of MUXF7_L_inst instantiation
For More Information
See the
Virtex-6 FPGA User Documentation (User Guides and Data
266
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