代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/492087/6424112
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/492087/6424113
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/492087/6424114
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/491340/6438902
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/491340/6438913
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/485380/6560887
vhd carry_compare_const.vhd
-------------------------------------------------------------------------------
-- $Id: carry_compare_const.vhd,v 1.2 2007/11/09 13:06:27 stefana Exp $
------------------------------------------------
www.eeworm.com/read/485380/6560967
vhd carry_compare_mask.vhd
-------------------------------------------------------------------------------
-- $Id: carry_compare_mask.vhd,v 1.1 2007/10/12 09:11:36 stefana Exp $
-------------------------------------------------
www.eeworm.com/read/483608/6599624
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/483608/6599634
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/481648/6636898
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