代码搜索:Carry

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

代码结果 8,060
www.eeworm.com/read/304987/13781636

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/304987/13781646

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/302514/13833488

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/302514/13833498

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/326419/6289848

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/326419/6289858

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/252441/6298514

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/252441/6298524

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/492085/6424078

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/492085/6424079

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]