代码搜索:adder

找到约 6,792 项符合「adder」的源代码

代码结果 6,792
www.eeworm.com/read/134643/13978603

txt adder.txt

module adder(a,b,cin,out,cout); input[4:1]a,b; input cin; //进位输入 output[4:1]out; output cout; //输出进位 assign {cout,out}=a+b+cin; endmodule
www.eeworm.com/read/132791/14072834

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/234945/14091388

class adder.class

www.eeworm.com/read/234945/14091393

java adder.java

import javax.swing.JFrame; public class adder { public static void main (String[] args) { JFrame frame=new JFrame ("adder"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
www.eeworm.com/read/203569/15355580

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/201721/15398176

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/200854/15421740

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/109800/15548096

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/109799/15548248

v adder.v

module adder(cout,sum,a,b,cin); parameter size=16; output cout; output[size-1:0] sum; input cin; input[size-1:0] a,b; assign {cout,sum}=a+b+cin; endmodule
www.eeworm.com/read/249358/6960141

repository

adder