JKFFE Primitive
AHDL Function Prototype (port name and order also apply to Verilog HDL):
FUNCTION JKFFE (J
, K
, CLK
, CLRN
, PRN
, ENA
)
RETURNS (Q
);
VHDL Component Declaration:
COMPONENT JKFFE
PORT (j : IN STD_LOGIC;
k : IN STD_LOGIC;
clk : IN STD_LOGIC;
clrn: IN STD_LOGIC;
prn : IN STD_LOGIC;
ena : IN STD_LOGIC;
q : OUT STD_LOGIC);
END COMPONENT;
Inputs |
ENA |
PRN |
CLRN |
CLK |
J |
K |
|
|
X |
L |
H |
X |
X |
X |
X |
H |
L |
X |
X |
X |
X |
L |
L |
X |
X |
X |
X |
H |
H |
L |
X |
X |
H |
H |
H |
|
L |
L |
H |
H |
H |
|
H |
L |
H |
H |
H |
|
L |
H |
H |
H |
H |
|
H |
H |
L |
H |
H |
X |
X |
X |
|
H |
L |
Illegal |
Qo* |
Qo* |
H |
L |
Toggle |
Qo* |
|
* Qo = level of Q before clock pulse
All flipflops are positive-edge-triggered.
|
When the ENA (clock enable) input is high, the flipflop passes a signal that is dependent on the J and K inputs to Q . When the ENA input is low, the state of Q is maintained, regardless of the J or K inputs. |
For devices that do not support clock enable, logic synthesis generates logic equations containing flipflops with clock enables. These logic equations correctly emulate the logic specified in the project.
Back to Top
Created by chm2web html help conversion utility. |