Heading3 - verilog instantiation template, Heading3 - vhdl instantiation template, Verilog instantiation template – Achronix Speedster22i User Macro Guide User Manual
Page 68: Vhdl instantiation template

Registers
DFFE
Speedster22i Macro Cell Library
PAGE 52
Verilog Instantiation Template
DFFE #(.init(1’b0))
instance_name
(.q(user_out),
.d(user_din),
.ce(user_clock_enable),
.ck(user_clock));
VHDL Instantiation Template
------------- ACHRONIX LIBRARY ------------
library speedster22i;
use speedster22i.components.all;
------------- DONE ACHRONIX LIBRARY ---------
-- Component Instantiation
DFFE_instance_name : DFFE
generic map ( init => ‘0’)
port map (q => user_out,
d => user_din,
ce => user_clock_enable,
ck => user_clock);