📄 mux56.vhd
字号:
library ieee;use ieee.std_logic_1164.all;use work.mips_pack.all;entity mux56 is port (data0_in: in std_ulogic_vector (31 downto 0); data1_in: in std_ulogic_vector (31 downto 0); ctl: in std_ulogic; data_out: out std_ulogic_vector (31 downto 0) );end entity mux56;architecture behavior of mux56 isbegin-- combinational logic for next AUX valuedata_out <= data1_in when (ctl = '1') elsedata0_in when (ctl = '0') else(others => '-');end architecture behavior;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -