• 加减与有符号和无符号库


    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;

     

  • 相关阅读:
    PbootCMS按钮权限控制
    vueadmintemplate顶部一级菜单 侧栏二级菜单
    git常用命令
    MeEdu开发插件之【视图】
    MeEdu开发插件
    MeEdu开发插件之【模型】
    .Net 5.0 通过IdentityServer4实现单点登录之客户端通过授权码换取IdToken和AcessToken并访问Api部分源码解析
    供应链需求调研CheckList
    云计算参考架构几例
    数据库 随机字符串
  • 原文地址:https://www.cnblogs.com/zhongguo135/p/3453127.html
Copyright © 2020-2023  润新知