zoukankan      html  css  js  c++  java
  • 加减与有符号和无符号库

    library ieee;

    use ieee.std_logic_1164.all;

    use ieee.std_logic_unsigned.all;

    entity mult_test is

     

    port(sclk : in std_logic ;

     a : in std_logic_vector(3 downto 0);

     b : in std_logic_vector(3 downto 0);

     c : out std_logic_vector(7 downto 0)

     );

     

    end mult_test;

     

    architecture rtl of mult_test is

     

    begin

     process(sclk)

     begin

    if sclk'event and sclk = '1' then

    c <= a * b;

    end if;

     end process;

     

    end rtl;

     

    library ieee;

    use ieee.std_logic_1164.all;

    use ieee.std_logic_signed.all;

    entity mult_test is

     

    port(sclk : in std_logic ;

     a : in std_logic_vector(3 downto 0);

     b : in std_logic_vector(3 downto 0);

     c : out std_logic_vector(7 downto 0)

     );

     

    end mult_test;

     

    architecture rtl of mult_test is

     

    begin

     process(sclk)

     begin

    if sclk'event and sclk = '1' then

    c <= a * b;

    end if;

     end process;

     

    end rtl;

     

     

    library ieee;

    use ieee.std_logic_1164.all;

    use ieee.std_logic_unsigned.all;

    entity mult_test1 is

     

    port(sclk : in std_logic ;

     a : in std_logic_vector(3 downto 0);

     b : in std_logic_vector(3 downto 0);

     d : out std_logic_vector(3 downto 0)

     );

     

    end mult_test1;

     

    architecture rtl of mult_test1 is

     

    begin

     process(sclk)

     begin

    if sclk'event and sclk = '1' then

    d <= a + b;

     

    end if;

     end process;

    end rtl;

     

    library ieee;

    use ieee.std_logic_1164.all;

    use ieee.std_logic_signed.all;

    entity mult_test1 is

     

    port(sclk : in std_logic ;

     a : in std_logic_vector(3 downto 0);

     b : in std_logic_vector(3 downto 0);

     d : out std_logic_vector(3 downto 0)

     );

     

    end mult_test1;

     

    architecture rtl of mult_test1 is

     

    begin

     process(sclk)

     begin

    if sclk'event and sclk = '1' then

    d <= a + b;

     

    end if;

     end process;

     

    end rtl;

     

  • 相关阅读:
    Java基础50道经典练习题(33)——杨辉三角
    Java基础50道经典练习题(32)——左移右移
    团队第二阶段冲刺04
    团队第二阶段冲刺03
    团队第二阶段冲刺02
    团队第二阶段冲刺01
    团队意见汇总
    各组意见汇总
    团队第一阶段冲刺07
    绩效评估01
  • 原文地址:https://www.cnblogs.com/zhongguo135/p/3453127.html
Copyright © 2011-2022 走看看