题解 | #全加器#

全加器

https://www.nowcoder.com/practice/d04c046febb74e72949baee9aa99d958

全加器,例化三次半加器

`timescale 1ns/1ns

module add_half(
   input                A   ,
   input                B   ,
 
   output	wire        S   ,
   output   wire        C   
);

assign S = A ^ B;
assign C = A & B;
endmodule

/***************************************************************/
module add_full(
   input                A   ,
   input                B   ,
   input                Ci  , 

   output	wire        S   ,
   output   wire        Co   
);

wire s_half, c_half;
wire s_half_1, c_half_1, s_half_2;

add_half add_full_inst1(
    .A(A),
    .B(B),

    .S(s_half),
    .C(c_half)
);

add_half add_full_inst2(
    .A(s_half),
    .B(Ci),

    .S(S),
    .C(c_half_1)
);

add_half add_full_inst3(
    .A(c_half),
    .B(c_half_1),

    .S(Co),
    .C()
);

endmodule

全部评论

相关推荐

头像
11-09 12:17
清华大学 C++
out11Man:小丑罢了,不用理会
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务