![]() |
|
![]() |
|
Answers Database
Foundation F1.3/F1.4 XVHDL : I/O flip-flops (IFDX1) instantiation
Record #2954
Product Family: Software ENTITY TEST IS
PORT(clock : IN STD_LOGIC;
mux_in : IN STD_LOGIC;
mux_out : OUT STD_LOGIC);
attribute inhibit_buf : boolean;attribute inhibit_buf of clock, mux_in: signal is true; END TEST; architecture INSIDE OF TEST IS COMPONENT bufg PORT(i : IN STD_LOGIC; o : OUT STD_LOGIC); END COMPONENT; COMPONENT IFDX1 PORT(ce : IN STD_LOGIC; c : IN STD_LOGIC; d : IN STD_LOGIC; q : OUT STD_LOGIC); END COMPONENT; SIGNAL clock_s : STD_LOGIC; BEGIN u0 : bufg PORT MAP (i => clock, o => clock_s); u1 : ifdx1 PORT MAP ( ce => '0', c => clock_s, d => mux_in, q => mux_out); end INSIDE; End of Record #2954 - Last Modified: 01/03/00 11:02 |
| For the latest news, design tips, and patch information on the Xilinx design environment, check out the Technical Tips! |