代码搜索:adder

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

代码结果 6,792
www.eeworm.com/read/320644/13420489

v full_adder.v

module Full_Adder(X,Y,CIN,S,COUT); input X,Y; input CIN; output S; output COUT; assign S = X ^ Y ^ CIN; assign COUT = (X & Y) + ( X & CIN) + (Y & CIN); endmodule
www.eeworm.com/read/320644/13420490

qws full_adder.qws

[ProjectWorkspace] ptn_Child1=Frames ptn_Child2=Workmode ptn_Child3=ActionPoints [ProjectWorkspace.Frames] ptn_Child1=ChildFrames [ProjectWorkspace.Frames.ChildFrames] ptn_Child1=Document-0 [P
www.eeworm.com/read/320644/13420491

vwf full_adder.vwf

/* 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/320644/13420492

pin full_adder.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a
www.eeworm.com/read/320644/13420512

psp full_adder.psp

www.eeworm.com/read/320644/13420526

hif full_adder.hif

Version 4.2 Build 157 12/07/2004 SJ Full Version 29 1857 OFF OFF OFF OFF OFF FV_OFF VRSM_ON VHSM_ON RETIME_OFF REMAP_OFF 0 -- Start Partition -- | ADV_NETLIST_OPT_SYNTH_WYSIWYG_REMAP
www.eeworm.com/read/318986/13464718

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/318986/13464812

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/318986/13464829

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/318986/13464831

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