代码搜索:adder
找到约 6,792 项符合「adder」的源代码
代码结果 6,792
www.eeworm.com/read/261703/4319741
v adder.v
// Creating a scaleable adder
module adder(cout, sum, a, b, cin);
parameter size = 1; /* declare a parameter. default required */
output cout;
output [size-1:0] sum; // sum uses the size para
www.eeworm.com/read/261703/4319818
vhd adder.vhd
library ieee;
use ieee.std_logic_1164.all;
entity adder is
port (a, b, cin :std_logic;
sum, cout :out std_logic);
end adder;
architecture behave of adder is
begin
www.eeworm.com/read/253341/4394867
h adder.h
/*
* Copyright (C) 2004-2005 Arabella Software Ltd.
* Yuli Barcohen
*
* Support for Analogue&Micro Adder boards family.
* Tested on AdderII and Adder87x.
*
* See file CRED
www.eeworm.com/read/253341/4396634
c adder.c
/*
* Copyright (C) 2004-2005 Arabella Software Ltd.
* Yuli Barcohen
*
* Support for Analogue&Micro Adder boards family.
* Tested on AdderII and Adder87x.
*
* See file CRED
www.eeworm.com/read/252366/4408406
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/252366/4408410
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/159905/5578269
vb adder.vb
Imports System
Namespace myComponents
Public Class Adder
Public FirstValue As Integer
Public SecondValue As Integer
Function AddValues() As Integer
Return FirstValue + SecondVa
www.eeworm.com/read/159905/5578295
cs adder.cs
using System;
namespace myComponents {
public class Adder {
public int FirstValue;
public int SecondValue;
public int AddValues() {
return FirstValue + SecondValue;
}
}
}
www.eeworm.com/read/159905/5578305
dll adder.dll
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|27 Feb 2003 22:58:47 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{EE880794-7BE0-402D-A80B-AA671A26F2C5}
vti_cacheddtm:TX|19 Jul 2001 22
www.eeworm.com/read/476030/6772709
vhd adder.vhd
-- MAX+plus II VHDL Example
-- Conversion Function
-- Copyright (c) 1994 Altera Corporation
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;
ENTITY adder IS
PORT (o