代码搜索:adder
找到约 6,792 项符合「adder」的源代码
代码结果 6,792
www.eeworm.com/read/241378/13148403
v dw01_add.v
//
// S.Arvind
// 02/02/99
// Ripple adder
//
module DW01_add (A, B, CI, SUM, CO);
parameter width = 32;
input [width-1:0] A, B;
input CI;
output [width-1:0] SUM;
o
www.eeworm.com/read/137517/13318023
txt 加法器:generate语句的应用.txt
-- n-bit Adder using the Generate Statement
-- download from: www.fpga.com.cn & www.pld.com.cn
library IEEE;
use IEEE.Std_logic_1164.all;
ENTITY addn IS
GENERIC(n : POSITIVE := 3); --no.
www.eeworm.com/read/300969/13875103
makefile
# Makefile for lib/float.
CC1 = ./FP.compile
LIBRARY = ../libfp.a
all: $(LIBRARY)
OBJECTS = \
$(LIBRARY)(add_ext.o) \
$(LIBRARY)(adder.o) \
$(LIBRARY)(adf4.o) \
$(LIBRARY)(adf8.o) \
www.eeworm.com/read/113399/6131787
makefile
# Makefile for lib/float.
CC1 = ./FP.compile
LIBRARY = ../libfp.a
all: $(LIBRARY)
OBJECTS = \
$(LIBRARY)(add_ext.o) \
$(LIBRARY)(adder.o) \
$(LIBRARY)(adf4.o) \
$(LIBRARY)(adf8.o) \
www.eeworm.com/read/487908/6501835
txt 加法器:generate语句的应用.txt
-- n-bit Adder using the Generate Statement
-- download from: www.fpga.com.cn & www.pld.com.cn
library IEEE;
use IEEE.Std_logic_1164.all;
ENTITY addn IS
GENERIC(n : POSITIVE := 3); --no.
www.eeworm.com/read/157209/11730125
txt 加法器:generate语句的应用.txt
-- n-bit Adder using the Generate Statement
-- download from: www.fpga.com.cn & www.pld.com.cn
library IEEE;
use IEEE.Std_logic_1164.all;
ENTITY addn IS
GENERIC(n : POSITIVE := 3); --no.
www.eeworm.com/read/131520/14142643
m bdrwadd.m
function [xs,matrixE] = bdrwadd(matrixE,x,y,ds,F,dc)
% bdrwadd.m Draw ADDER
% 5:46PM 9/18/99
%
% Drawing Filter Realizations
%
% Authors: Miroslav D. Lutovac, Dejan V. Tosic, 19
www.eeworm.com/read/270745/4235128
mms 5-staraddervsmarik.mms
# A MegaMek Scenario file
MMSVersion=1
Name=The Great Refusal - Battle 5
Description=Strana Mechty, 23rd April 3060. Clan Star Adder V Free Worlds League
BoardWidth=1
BoardHeight=1
Maps=riverdelta2
F
www.eeworm.com/read/252366/4408365
makefile
# Makefile for lib/float.
CC1 = ./FP.compile
LIBRARY = ../libfp.a
all: $(LIBRARY)
OBJECTS = \
$(LIBRARY)(add_ext.o) \
$(LIBRARY)(adder.o) \
$(LIBRARY)(adf4.o) \
$(LIBRARY)(adf8.o) \
www.eeworm.com/read/471796/6881997
vhd list_ch03_20_fp_test.vhd
-- Listing 3.20
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity fp_adder_test is
port(
clk: in std_logic;
sw: in std_logic_vector(7 downto 0);