Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Selecting architecture for an adder in Cadence

Status
Not open for further replies.

orangelogic

Junior Member level 1
Joined
May 31, 2005
Messages
15
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,377
I am about a make a adder architecutre in cadence using static cmos, can someone suggest a useful resource which can help me in selecting a specific architecture among "carry lookahead" "carry skip" "carry select" and few others.
 

adder architecture

maybe you can synthesize it using digital design flow and import it to virtuoso environment.
 

Re: adder architecture

Digital IC's
by JAN Rabaey

will help you fully
 

Re: adder architecture

how to import .db file that is gate level net list into virtuso.
 

adder architecture

Try to convert the .db file to verilog or EDIF.
 

adder architecture

i will give u the simplest solution....


module add(a,b,c);
input [15:0]a;
input [15:0]b;
output [16:0]c;
assign c = a + b;
//type in ur architecture details here in a format tat can be understood by DC
endmodule


the gate level netlist is a .v or .vhd file as written by DC.
need more help...?
mail me

Regards
Srinivas
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top