2306|1

6

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

小弟初学VHDL,看别人的结构写了个ALU的程序,但怎么编译都过不去,求大神帮忙改下 [复制链接]

谢谢,,非常感谢

LIBRARY IEEE;

USE IEEE.std_logic_1164.ALL;

USE IEEE.std_logic_unsigned.ALL;

USE IEEE.std_logic_arith.ALL;

entity ALU is

port(cin: in std_logic;

alu_function: in std_logic_vector(2 downto 0);

a_in: in std_logic_vector(7 downto 0);

b_in: in std_logic_vector(7 downto 0);

alu_out: out std_logic_vector(7 downto 0);

z: out std_logic;

c: out std_logic;

v: out std_logic;

                s: out std_logic

);

end ALU;

Architecture win of ALU is

signal midout: std_logic_vector(15 downto 0);

signal temp: std_logic_vector(15 downto 0);

begin

process(a_in,b_in,alu_function)

constant ADD:std_logic_vector:="000";

constant SUB:std_logic_vector:="001";

constant ANDOP:std_logic_vector:="010";

constant OROP:std_logic_vector:="011";

constant XOROP:std_logic_vector:="100";

constant SHL:std_logic_vector:="101";

constant SHR:std_logic_vector:="110";

cinextend:="000000000000000"&cin;

begin

case alu_function is

when ADD=>midout<=a_in + b_in + cin;

when SUB=>midout<=b_in - a_in;

when ANDOP=>midout<=a_in and b_in;

when OROP=>midout<=a_in or b_in;

when XOROP=>midout<=a_in xor b_in;

when SHL=>midout<=b_in(14 downto 0)&"0";

when SHR=>midout<="0"&b_in(15 downto 0);

when others=>midout<="ZZZZZZZZZZZZZZZZ";

end case;

if(alu_function="000" or "001")

    if(a_in(15)="1" and b_in(15)="1" and midout(15)="0") or (a_in(15)="0" and b_in(15)="0" and midout(15)="1" )

    then V<="1";

    else V<="0";

    end if;

end if;

if(alu_function="000")

then temp:="1111111111111111"-b_in-cinextend;

if temp

      c<="1";

else c<="0";

end if;

else if(alu_function="001")

  if b_in

      c<="1";

  else c="0";

  end if;

else if(alu_function="101")

c

else if(alu_function="110")

c<=a_in(0);

else c<="0";

end if;

end process;

alu_out<=midout;

end win;



最新回复

注意数据BIT位数  详情 回复 发表于 2014-4-16 23:06
点赞 关注
 

回复
举报

4

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
注意数据BIT位数
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表