JK Flip-Flop VHDL Source Code

vhdl
flip-flop
jk flip-flop
source code
digital logic

This page provides VHDL source code for a JK Flip-Flop.

VHDL Code

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity JKFF1 is
    Port (
        j, k, clk, reset : in STD_LOGIC;
        Q : inout STD_LOGIC
    );
end JKFF1;

architecture Behavioral of JKFF1 is
    signal div: std_logic_vector(22 downto 0);
    signal clkd: std_logic;
begin
    process(clk)
    begin
        if rising_edge(clk) then
            div <= div + 1;
        end if;
    end process;

    clkd <= div(22);

    process(clkd, reset)
    begin
        if (reset = '1') then
            Q <= '0';
        elsif (clkd'event and clkd = '1') then
            if (j = '0' and k = '0') then
                Q <= Q;
            elsif (j = '0' and k = '1') then
                Q <= '0';
            elsif (j = '1' and k = '0') then
                Q <= '1';
            elsif (j = '1' and k = '1') then
                Q <= not Q;
            end if;
        end if;
    end process;
end behavioral;

D Flip-Flop VHDL Source Code

VHDL source code for a D Flip-Flop implementation, including reset and clock-triggered data capture.

vhdl
flip-flop
d flip-flop

1x8 Demultiplexer VHDL Source Code

VHDL source code for a 1x8 demultiplexer (DEMUX) implementation. Includes code and related VHDL resources.

vhdl
demultiplexer
source code
VHDL Code for a 2 to 4 Decoder

VHDL Code for a 2 to 4 Decoder

This article provides VHDL source code for a 2-to-4 decoder, along with a block diagram and truth table for understanding its operation.

vhdl
decoder
2 to 4 decoder

3-to-8 Decoder VHDL Source Code

VHDL source code for a 3-to-8 decoder implementation, demonstrating a basic digital logic circuit.

vhdl
decoder
source code

8-to-3 Encoder VHDL Source Code

VHDL source code for an 8-to-3 encoder implementation, demonstrating a simple combinational logic circuit.

vhdl
encoder
source code