代码搜索:adder
找到约 6,792 项符合「adder」的源代码
代码结果 6,792
www.eeworm.com/read/378479/9229927
v adder8.v
module adder8(cout,sum,ina,inb,cin,clk);
output[7:0] sum;
output cout;
input[7:0] ina,inb;
input cin,clk;
reg[7:0] tempa,tempb,sum;
reg cout;
reg tempc;
always @(posedge clk)
begin
tempa=i
www.eeworm.com/read/378479/9229961
acf adder4.acf
--
-- Copyright (C) 1988-2002 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, and any
www.eeworm.com/read/378479/9229965
v adder4.v
module adder4(cout,sum,ina,inb,cin);
output[3:0] sum;
output cout;
input[3:0] ina,inb;
input cin;
assign {cout,sum}=ina+inb+cin;
endmodule
www.eeworm.com/read/378479/9229968
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/378479/9229971
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/378479/9229974
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/180496/9304915
v tb_adder.v
`include "Def_StructureParameter.v"
`include "Adder.v"
module tb_Adder;
reg [`WordWidth-1:0] in_LeftOperand,in_RightOperand;
reg in_LowCarry;
wire [`WordWidth-1:0] out_Result;
wire out_Carry
www.eeworm.com/read/376175/9326099
bdf adder2.bdf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/376175/9326101
bsf adder2.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/375968/9341121
h adder_pc.h
#ifndef ADDER_PC_H
#define ADDER_PC_H
#include "STDAFX.h"
//指令加法器
SC_MODULE(adder_pc)
{
sc_in adder_pc_in;
sc_out adder_pc_out;
//指令寄存器值+4,输出
void entry(