Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
20637 Discussions

cyc2 2-bit full adder use more than 1 LE

Altera_Forum
Honored Contributor II
1,152 Views

I am dealing with Verilog HDL. Could you please explain how to convert a logic element as an arithmetic mode. 

 

In cyc2 handbook it says that, 

"The arithmetic mode is ideal for implementing adders, counters, 

accumulators, and comparators. An LE in arithmetic mode implements a 

2-bit full adder and basic carry chain" 

 

But my codes use more than one logic element.
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
245 Views

If you study the Cyclone II (or Cyclone III - IV) LE schematic thoroughly, you'll realize, that it can't implement 2-bit full adder, which is according to general comprehension a logic circuit comprised of to full adders. As a sufficient reason, the LE has only one output bit. So obviously, the handbook author means a full adder with two input bits, which is usually designated a 1-bit full adder. 

 

Strange enough, the erroneous statement has been continued form Cyclone II up to Cyclone IV handbook. 

 

So you actually need one LE for each output bit. In addition, you need LEs to connect both Cin and cout, that can be only routed to other carry signals directly. As a result, e.g. a 16-Bit adder needs 18 LEs. For a two bit adder,you can't achieve less than 4 LEs, as your fadder2 and fadder3 do. To avoid misunderstandings about the indended logic, I suggest a MegaWizard generated adder or a behavioral design.
0 Kudos
Altera_Forum
Honored Contributor II
245 Views

Take a look at page 3 of this document, it'll show you what FvM is talking about: http://www.altera.com/literature/hb/cyc2/cyc2_cii51002.pdf

0 Kudos
Reply