具有Mux 8:3的VHDL全加器

时间:2012-01-02 18:25:19

标签: vhdl electronics mux ghdl

我尝试使用Mux8:3创建一个完整的加法器......但是它没有运行! 当我运行它时,我没有从命令行收到任何错误,但ghdl无法启动! 有人可以阅读此代码并说我能做什么? 非常感谢。

              -----------------------MUX8ingressi-------------------
        library IEEE;
        use IEEE.std_logic_1164.all;

        entity mux8 is 
          port(
               A: in STD_LOGIC;
               B: in STD_LOGIC; 
               C: in STD_LOGIC;
               D: in STD_LOGIC; 
               E: in STD_LOGIC;
               F: in STD_LOGIC;
               G: in STD_LOGIC;
               H: in STD_LOGIC;
               S1: in STD_LOGIC;
               S2: in STD_LOGIC;
               S3: in STD_LOGIC;
               U: out STD_LOGIC 
          );
        end mux8;


        architecture RTL of mux8 is 
        signal S: STD_LOGIC_VECTOR (2 downto 0);

          begin
            S <= S1&S2&S3;
            U <= A when S="000" else
                 B when S="001" else
                 C when S="010" else
                 D when S="011" else
                 E when S="100" else
                 F when S="101" else
                 G when S="110" else
                 H;

          end RTL;

        -------------------FULL ADDER-------------------------------
        library IEEE;
        use IEEE.std_logic_1164.all;

        entity FA is 
          port(
               add1: in STD_LOGIC; 
               add2: in STD_LOGIC; 
               Ci: in STD_LOGIC;
               S: out STD_LOGIC;
               Co: out STD_LOGIC
          );
        end FA;

        architecture RTL of FA is 
        --  Ci  A  B |  Co  S
        -------------|---------
        --   0  0  0 |   0  0
        --   0  0  1 |   0  1
        --   0  1  0 |   0  1
        --   0  1  1 |   1  0
        --   1  0  0 |   0  1
        --   1  0  1 |   1  0
        --   1  1  0 |   1  0 
        --   1  1  1 |   1  1

        component mux8 is
          port(
               A: in STD_LOGIC; 
               B: in STD_LOGIC;
               C: in STD_LOGIC; 
               D: in STD_LOGIC;
               E: in STD_LOGIC;
               F: in STD_LOGIC;
               G: in STD_LOGIC;
               H: in STD_LOGIC;
               S1: in STD_LOGIC;
               S2: in STD_LOGIC;
               S3: in STD_LOGIC;
               U: out STD_LOGIC
          );
        end component;

          begin
            test: mux8 port map (
                                    A=>'0',
                                    B=>'1',
                                    C=>'1',
                                    D=>'0',
                                    E=>'1',
                                    F=>'0',
                                    G=>'0',
                                    H=>'1',
                                    S1=>add1,
                                    S2=>add2,
                                    S3=>Ci,
                                    U=>S
                                    );

          end RTL;

        -----------------TEST BENCH-----------------
        library IEEE;
        use IEEE.std_logic_1164.all;

        entity FA_tb is 
        end FA_tb;


        architecture test of FA_tb is 
        component FA is 
          port(
               add1: in STD_LOGIC; 
               add2: in STD_LOGIC; 
               Ci: in STD_LOGIC;
               S: out STD_LOGIC; 
               Co: out STD_LOGIC
          );
        end component;

        signal add1_tb, add2_tb, Ci_tb, S_tb, Co_tb: STD_LOGIC;
        signal  ideal_co: STD_LOGIC; 
        signal  ideal_s: STD_LOGIC;
        signal  ERRORE_S,ERRORE_Co: STD_LOGIC := '0'; 

        begin 

            UUT: FA port map (add1=>add1_tb, add2=>add2_tb, Ci=>Ci_tb, S=>S_tb, Co=>Co_tb);

            process
            begin
            add1_tb<='0'; add2_tb<='0'; Ci_tb<='0'; ideal_co<='0'; ideal_s<='0';
            wait for 10 ns;
            add1_tb<='0'; add2_tb<='1'; Ci_tb<='0'; ideal_co<='0'; ideal_s<='1';
            wait for 10 ns;
            add1_tb<='1'; add2_tb<='0'; Ci_tb<='0'; ideal_co<='0'; ideal_s<='1';
            wait for 10 ns;
            add1_tb<='1'; add2_tb<='1'; Ci_tb<='0'; ideal_co<='1'; ideal_s<='0';
            wait for 10 ns;
            add1_tb<='0'; add2_tb<='0'; Ci_tb<='1'; ideal_co<='0'; ideal_s<='1';
            wait for 10 ns;
            add1_tb<='0'; add2_tb<='1'; Ci_tb<='1'; ideal_co<='1'; ideal_s<='0';
            wait for 10 ns;
            add1_tb<='1'; add2_tb<='0'; Ci_tb<='1'; ideal_co<='1'; ideal_s<='0';
            wait for 10 ns;
            add1_tb<='1'; add2_tb<='1'; Ci_tb<='1'; ideal_co<='1'; ideal_s<='1';
            wait for 10 ns;

            wait;
            end process;

        end test;

现在我的make.bat

    echo off
    cls
    set path=%path%;C:\Program files\GHDL\bin;C:\Program files\GHDL\gtk\bin;

    echo on
    ghdl -a FAconMUX_83.vhdl
    ghdl -e mux8
    ghdl -e FA
    ghdl -e FA_tb
    ghdl -r FA_tb --vcd=out83.vcd
    gtkwave out83.vcd

1 个答案:

答案 0 :(得分:0)

你的代码编译得很好,我在Windows 8上使用Altera Quartus II 14.0尝试过。我建议你使用另一个综合工具,或者只是使用逻辑门来获得总和和携带。 祝福