代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/297875/7990957
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/296104/8121838
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/296104/8121872
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/296097/8122354
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/296097/8122390
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/244507/12859322
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/244507/12859351
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/143521/12868261
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/143521/12868298
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/328669/13008397
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]