![]() |
|
![]() |
|
Answers Database
FPGA Express 3.3: Instantiated IFDX/IFDXI or OFDX/OFDXI get written to netlist as IFD or OFD
Record #7727
Problem Title:
my_IFDX:process (CLK, RST)
begin
if (RST='1') then
Q <= '0'; --change to '1' for set flip flop (IFDXI/OFDXI)
elsif (CLK'event and CLK='1') then
if (CE='1') then --infers clock enable
Q <= D;
end if;end if; end process; Verilog Example:
always @(posedge CLK or posedge RESET)
begin
if (RESET)
DOUT = 1'b0; //change to '1' for set flip flop (IFDXI/OFDXI)
else
if (ENABLE) //infers clock enable
DOUT = DIN;
end
End of Record #7727 - Last Modified: 11/09/99 09:31 |
| For the latest news, design tips, and patch information on the Xilinx design environment, check out the Technical Tips! |