Prévia do material em texto
Step 1 of 1 6.079E Refer to Table X6.77 from the textbook. Write the ABEL code for the customized multiplexer with 4-bit input buses A,B,C,D, and E and one output bus T library ieee; use entity X677 is port( a,b,c,d, e: in downto 0); s:in STD_LOGIC_VECTOR(3 downto 0); y: out STD_LOGIC_VECTOR(7 downto 0) ); end X677; architecture beh of X677 is begin process(s,a,b,c,d,e) begin if(s="000" or s="010" or s="100" or s="110") then y