Answered step by step
Verified Expert Solution
Question
1 Approved Answer
use quartus ii and exceute it... i need scrrenshot or picture library IEEE; use IEEE.STD LOGIC_1164.ALL; a Entity declaration entity encoder4t02 is Port ( input,
use quartus ii and exceute it... i need scrrenshot or picture
library IEEE; use IEEE.STD LOGIC_1164.ALL; a Entity declaration entity encoder4t02 is Port ( input, inputl, input2, input3: in STD_LOGIC; input signals outputO, Outputl: out STD_LOGIC) ; output signals end encoder4t02; Architecture declaration architecture Behavioral of encoder4t02 is begin Process declaration process (input, inputl, input2, input3) begin output Outputl Default value for output Default value for Outputl Ifelse statement to map inputs to Outputs if (input = '1 ) then output0 outputl elsif (inputl = then output0 outputl elsif (input2 = '1 ) then Output outputl ' etsif (input3 = ' 1 i) then output '1 , outputl end if; end process; end Behavioral; library IEEE; use IEEE.STD LOGIC_1164.ALL; a Entity declaration entity encoder4t02 is Port ( input, inputl, input2, input3: in STD_LOGIC; input signals outputO, Outputl: out STD_LOGIC) ; output signals end encoder4t02; Architecture declaration architecture Behavioral of encoder4t02 is begin Process declaration process (input, inputl, input2, input3) begin output Outputl Default value for output Default value for Outputl Ifelse statement to map inputs to Outputs if (input = '1 ) then output0 outputl elsif (inputl = then output0 outputl elsif (input2 = '1 ) then Output outputl ' etsif (input3 = ' 1 i) then output '1 , outputl end if; end process; end Behavioral;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started