D Flip-Flop VHDL Source Code

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

This page provides the VHDL source code for a D 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 DFF1 is
    Port (
        d, res, clk : in  STD_LOGIC;
        q           : out STD_LOGIC
    );
end DFF1;

architecture Behavioral of DFF1 is
begin
    process(clk)
    begin
        if (res = '1') then
            q <= '0';
        elsif clk'event and clk = '1' then
            q <= d;
        end if;
    end process;
end behavioral;

JK Flip-Flop VHDL Source Code

VHDL source code implementation of a JK Flip-Flop with reset functionality. Includes behavioral architecture and links to other VHDL code examples.

vhdl
flip-flop
jk 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