代码搜索:adder

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

代码结果 6,792
www.eeworm.com/read/400482/7103422

ndb adder4.ndb

NDB006 The number of symbol table entries is: 1 The length of the symbol table is: 2 Index Hierarchy Path ----- -------------- ! | The number of name info structs is : 1 InsOrder BitField
www.eeworm.com/read/400482/7103423

v adder_tp.v

`timescale 1ns/1ns `include "adder4.v" module adder_tp; reg[3:0] a,b; reg cin; wire[3:0] sum; wire cout; integer i,j; adder4 adder(sum,cout,a,b,cin); always #5 cin=~cin; initial begin
www.eeworm.com/read/400482/7103424

hif adder4.hif

HIF003 -- -- Copyright (C) 1988-2002 Altera Corporation -- Any megafunction design, and related net list (encrypted or decrypted), -- support information, device programming or simulation file, an
www.eeworm.com/read/462742/7196630

vhd adder32.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity adder32 is port(n: in std_logic_vector(31 downto 0); a: in std_logic_vector(31 downto 0); cl
www.eeworm.com/read/462742/7196768

psp adder32.psp

www.eeworm.com/read/462742/7196774

dbp adder32.dbp

www.eeworm.com/read/462742/7196796

hif adder32.hif

Version 6.0 Build 178 04/27/2006 SJ Web Edition 39 2097 OFF OFF OFF OFF OFF FV_OFF Level2 0 0 VRSM_ON VHSM_ON 0 -- Start Partition -- -- End Partition -- -- Start Library Paths -- --
www.eeworm.com/read/461590/7223898

vhd adder_signed.vhd

use work.dp32_types.all; entity adder_signed is generic(width : positive); port(a,b : in bit_vector(width-1 downto 0); y : out bit_vector(width-1 downto 0); o : out bit ); end ad
www.eeworm.com/read/461590/7223927

vhd fp_adder.vhd

library IEEE; use STD.textio.all; use IEEE.std_logic_1164.all; use work.dp32_types.all; PACKAGE fpadd_pkg is constant MNT_LENGTH : INTEGER := 24; -- including hidden "1" bit constant
www.eeworm.com/read/461590/7223938

vhd adder_unsigned.vhd

use work.dp32_types.all; entity adder_unsigned is generic(width : positive); port(a,b : in bit_vector(width-1 downto 0); y : out bit_vector(width-1 downto 0); o : out bit ); end