代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/255166/12097106
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/255166/12097108
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/255166/12097114
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/339751/12206548
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/339751/12206552
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/233704/14142793
bak my_carry.v.bak
primitive my_carry(c_out,a,b,c_in);
output c_out;
input a,b,c_in;
table
//a b c_in : c_out
0 0 ? : 0;
0 ? 0 : 0;
? 0 0 : 0;
1 1 ?
www.eeworm.com/read/220620/14794956
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/220620/14794977
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/395931/8145646
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/395931/8145648
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