代码搜索:adder
找到约 6,792 项符合「adder」的源代码
代码结果 6,792
www.eeworm.com/read/460207/7255743
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
`timescale 1ns/1ns
module tb_adder4;
reg
www.eeworm.com/read/460207/7255777
v adder_tp.v
`timescale 1ns/1ns
module adder_tp;
reg [3:0] a,b;
reg cin;
wire [3:0] sum;
wire cout;
integer i,j;
adder4 adder(.sum(sum),.cout(cout),.ina(a),.inb(b),.cin(cin));
always #5 cin=~cin;
initial begin
www.eeworm.com/read/457851/7316954
txt full_adder.txt
module full_adder (c_out , s , a , b , c);
input a, b, c;
wire a, b, c;
output c_out , s;
wire c_out , s;
wire w1, w2, w3;
xor x1 (w1, a , b );
xor x2 (s, w1, c );
nand n1 (w2, a , b);
nand
www.eeworm.com/read/456603/7343824
v adder16.v
`include "adder.v"
module adder16(cout,sum,a,b,cin);
output cout;
parameter my_size=16;
output[my_size-1:0] sum;
input[my_size-1:0] a,b;
input cin;
adder my_adder(cout,sum,a,b,cin);
endmod
www.eeworm.com/read/456603/7343918
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/456603/7343935
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/456603/7343937
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/456603/7343939
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/456603/7343940
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/456603/7343941
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