代码搜索:Carry

找到约 8,060 项符合「Carry」的源代码

代码结果 8,060
www.eeworm.com/read/362828/9979564

v carry_skip_adder.v

// 二进制跳跃进位加法器 module carry_skip_adder(x_in, y_in, c_in, sum, c_out); parameter DSIZE = 12; parameter S = 4; input c_in; input [DSIZE-1:0] x_in, y_in; output [DSIZE-1:0] sum; reg [
www.eeworm.com/read/362828/9979567

v carry_chain_adder.v

module carry_chain_adder(x, y, cin, sum, cout); parameter DSIZE = 8; input cin; input [DSIZE-1:0] x, y; output [DSIZE-1:0] sum; output cout; reg cout, q[DSIZE:0], p[DSIZE-1:0], g[D
www.eeworm.com/read/362828/9979568

v ripple_carry_adder.v

// 二进制行波进位加法器 module ripple_carry_adder(x, y, cin, sum, cout); parameter N = 8; input cin; input [N-1:0] x, y; output [N-1:0] sum; output cout; reg cout; reg [N-1:0] sum; reg
www.eeworm.com/read/362310/10005985

v carry_udpx2.v

primitive carry_udpx2(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout ? 0 0 : 0; 0 ? 0 : 0; 0 0 ? : 0; ? 1 1 : 1; 1 ? 1 : 1; 1
www.eeworm.com/read/362310/10006008

v carry_udpx1.v

primitive carry_udpx1(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout 0 0 0 : 0; 0 1 0 : 0; 0 0 1 : 0; 0 1 1 : 1; 1 0 0 : 0; 1
www.eeworm.com/read/355389/10271237

v carry_udpx2.v

primitive carry_udpx2(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout ? 0 0 : 0; 0 ? 0 : 0; 0 0 ? : 0; ? 1 1 : 1; 1 ? 1 : 1; 1
www.eeworm.com/read/355389/10271298

v carry_udpx1.v

primitive carry_udpx1(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout 0 0 0 : 0; 0 1 0 : 0; 0 0 1 : 0; 0 1 1 : 1; 1 0 0 : 0; 1
www.eeworm.com/read/159869/10606018

v carry_udpx2.v

primitive carry_udpx2(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout ? 0 0 : 0; 0 ? 0 : 0; 0 0 ? : 0; ? 1 1 : 1; 1 ? 1 : 1; 1
www.eeworm.com/read/159869/10606056

v carry_udpx1.v

primitive carry_udpx1(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout 0 0 0 : 0; 0 1 0 : 0; 0 0 1 : 0; 0 1 1 : 1; 1 0 0 : 0; 1
www.eeworm.com/read/159552/10640385

v carry_udpx2.v

primitive carry_udpx2(cout,cin,a,b); input cin,a,b; output cout; table // cin a b : cout ? 0 0 : 0; 0 ? 0 : 0; 0 0 ? : 0; ? 1 1 : 1; 1 ? 1 : 1; 1