代码搜索:adder

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

代码结果 6,792
www.eeworm.com/read/300969/13875241

h adder.h

/* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header: adder.h,v 1.2 92/02/2
www.eeworm.com/read/140467/5789402

h adder.h

/* * Copyright (C) 2004 Arabella Software Ltd. * Yuli Barcohen * * Support for Analogue&Micro Adder boards family. * Tested on AdderII and Adder87x. * * See file CREDITS f
www.eeworm.com/read/140467/5790742

c adder.c

/* * Copyright (C) 2004 Arabella Software Ltd. * Yuli Barcohen * * Support for Analogue&Micro Adder boards family. * Tested on AdderII and Adder87x. * * See file CREDITS f
www.eeworm.com/read/136777/5867233

jsp adder.jsp

添加完毕
www.eeworm.com/read/128965/5976003

h adder.h

/* * Copyright (C) 2004 Arabella Software Ltd. * Yuli Barcohen * * Support for Analogue&Micro Adder boards family. * Tested on AdderII and Adder87x. * * See file CREDITS f
www.eeworm.com/read/128965/5977245

c adder.c

/* * Copyright (C) 2004 Arabella Software Ltd. * Yuli Barcohen * * Support for Analogue&Micro Adder boards family. * Tested on AdderII and Adder87x. * * See file CREDITS f
www.eeworm.com/read/123117/6063206

java adder.java

public class Adder { public static void main(String[] args) { int numArgs = args.length; //this program requires at least two arguments on the command line if (numArgs < 2) {
www.eeworm.com/read/113399/6131828

c adder.c

/* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header: adder.c,v 1.6 93/01/0
www.eeworm.com/read/113399/6131832

h adder.h

/* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Header: adder.h,v 1.2 92/02/2
www.eeworm.com/read/252441/6298464

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