Question:

Program for 8:3 Encoder using VHDL data flow modeling.

Posted by Saradwata Bandyopadhyay on 01-03-2025

Tags : Dataflow Modeling 8:3 Encoder Model Sim program VHDL

Answer:

Here is the solution for the above question =>

                                      library ieee;
use ieee.std_logic_1164.all;
entity data_flow_encoder_8_3 is
port(i0,i1,i2,i3,i4,i5,i6,i7:in bit; o0,o1,o2: out bit);
end data_flow_encoder_8_3;
architecture dataflow of data_flow_encoder_8_3 is
begin
o0<=i4 or i5 or i6 or i7;
o1<=i2 or i3 or i6 or i7;
o2<=i1 or i3 or i5 or i7;
end dataflow;

You can directly download the Source Code and the Model Sim application from the links below =>

Add a Comment

Please Login to Comment.