代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/159552/10640430
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/467802/7001572
v carry_save_mult.v
// N比特乘M比特的二进制进位存储乘法器
module carry_save_mult(x_in, y_in, p);
parameter N = 4,
M = 4;
input [N-1:0] x_in;
input [M-1:0] y_in;
output [N+M-1:0] p;
reg [N+M-1:0] p;
reg [M:0]
www.eeworm.com/read/467802/7001573
v ripple_carry_mult.v
// N比特乘M比特的二进制行波进位乘法器
module ripple_carry_mult(x_in, y_in, p);
parameter N = 4,
M = 4;
input [N-1:0] x_in;
input [M-1:0] y_in;
output [N+M-1:0] p;
reg [N+M-1:0] p;
reg [M:0]
www.eeworm.com/read/400482/7103361
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/400482/7103371
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/456603/7343878
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/456603/7343888
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/450210/7488717
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/450210/7488727
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/297875/7990936
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