0
4.3kviews
Design a VHDL Code for BCD to 7 Segment Decoder.

Subject: Digital System Design

Topic: Introduction to VHDL

Difficulty: Medium

1 Answer
0
104views

VHDL Code for BCD to 7 segment display using combinational logic:

library IEEE;

use IEEE.STD_LOGIC_1164.ALL;

entity bcd_7seg is

Port ( B0,B1,B2,B3 : in STD_LOGIC;

A,B,C,D,E,F,G : out STD_LOGIC);

end bcd_7seg;

architecture Behavioral of bcd_7seg is

begin

A <= B0 OR B2 OR (B1 AND B3) OR (NOT B1 AND NOT …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.