⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcontrol.vhd.bak

📁 实现由一个4位十进制数码管(含小数点)显示结果
💻 BAK
字号:
LIBRARY IEEE; 
USE IEEE.STD_LOGIC_1164.ALL; 
USE IEEE.STD_LOGIC_UNSIGNED.ALL; 
ENTITY tcontrol IS
   port (en1: IN STD_LOGIC; 
         in0: in std_logic_vector(3 downto 0);
         in1: in std_logic_vector(3 downto 0);
         in2: in std_logic_vector(3 downto 0);
         in3: in std_logic_vector(3 downto 0);
         in4: in std_logic_vector(3 downto 0);
         in5: in std_logic_vector(3 downto 0);
         in6: in std_logic_vector(3 downto 0);
        out0: out  std_logic_vector(3 downto 0);
        out1: out  std_logic_vector(3 downto 0);
        out2: out  std_logic_vector(3 downto 0);
        out3: out  std_logic_vector(3 downto 0);
       flage: out  std_logic_vector(1 downto 0));
 END tcontrol;
     ARCHITECTURE behav OF tcontrol IS
 signal A0,A1,A2,A3: std_logic_vector(3 downto 0); 
 signal CQ:  std_logic_vector(1 downto 0);
      BEGIN
        PROCESS(en1)
         BEGIN
           if en1='1' then
              if in6=0 then
                 if in5=0 then
                    if in4=0 then
                       A3<=in3;A2<=in2;A1<=in1;A0<=in0;CQ<="11";
                    else
                       A3<=in4;A2<=in3;A1<=in2;A0<=in1;CQ<="10";
                    end if;
                  else
                     A3<=in5;A2<=in4;A1<=in3;A0<=in2;CQ<="01";
                  end if;
               else
                     A3<=in6;A2<=in5;A1<=in4;A0<=in3;CQ<="00";
               end if;
             end if;
             end PROCESS;
             out3<=A3;out2<=A2;out1<=A1;out0<=A0;flage<=CQ;
            end ;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -