超前进位4位加法器74LS283的VHDL程序实现

发布者:zhaodawei617最新更新时间:2015-06-17 来源: 51hei关键字:超前进位  4位加法器  74LS283 手机看文章 扫描二维码
随时随地手机看文章
  由于串行多位加法器的高位相加时要等待低位的进位,所以速度受到进位信号的限制而变慢,人们又设计了一种多位数超前进位加法器逻辑电路,使每位求和结果直接接受加数和被加数而不必等待地位进位,而与低位的进位信号无关,这就大大的提高了运算速度。现在简单介绍超前进位的运算方法,以及VHDL可编程逻辑编程。

 Library   ieee;
Use    ieee.std_logic_1164.all;
entity     CQadd_Co    is
    port(C0,A1,B1,A2,B2,A3,B3,A4,B4:In std_logic;
          S1,S2,S3,S4,Co:out std_logic);
end CQadd_Co;
architecture    adder    of      CQadd_Co      is
    signal    c1,c2,c3,t1,t2,t3,t4,m1,m2,m3,m4:std_logic;
    signal    P1,P2,P3,P4:std_logic;
       begin
          t1<=not(A1 AND B1);m1<=not(A1 or B1);
          t2<=not(A2 AND B2);m2<=not(A2 or B2);
          t3<=not(A3 AND B3);m3<=not(A3 OR B3);
          t4<=not(A4 AND B4);m4<=not(A4 OR B4);
          P1<=(not m1)and t1;P2<=(not m2)and t2;
          P3<=(not m3)and t3;P4<=(not m4)and t4;
          c1<=not(((not C0)and t1)or m1);
          c2<=not(((not C0)and t1 and t2)or (t2 and m1) or m2);
    c3<=not(((not C0)and t1 and t2 and t3)or (t2 and t3 and m1) or (m2 and t3)or m3);
    Co<=not(((not C0)and t1 and t2 and t3 and t4)or(m1 and t4 and t3 and t2)or(t2 and t3 and t4)or(t4 and m3)or m4);
    S1<=P1 XOR C0;S2<=P2 XOR c1;S3<=P3 XOR c2;S4<=P4 XOR c3;
   end;

关键字:超前进位  4位加法器  74LS283 引用地址:超前进位4位加法器74LS283的VHDL程序实现

上一篇:不带使能端的3线8线译码器VHDL程序
下一篇:7段数码管显示驱动vhdl程序

小广播
添点儿料...
无论热点新闻、行业分析、技术干货……
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved