代码搜索:Carry

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

代码结果 8,060
www.eeworm.com/read/300713/13897338

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/132792/14072811

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/203569/15355638

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/201721/15398234

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/200854/15421798

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/109800/15548154

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/109799/15548305

v carry_udp.v

primitive carry_udp(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 0
www.eeworm.com/read/106834/15620533

ec carry_y.ec

/* work_init */ #include $include sqlca; $include sqlda; void addspace(); void mess(); char y_n(); #include struct operator opt; short i,j,l=2,f
www.eeworm.com/read/386853/8723312

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/386853/8723314

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