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.

LUT(lookup table) in FPGA can be implemented in ASIC?

Status
Not open for further replies.

feel_on_on

Full Member level 5
Joined
Apr 29, 2005
Messages
283
Helped
6
Reputation
12
Reaction score
4
Trophy points
1,298
Activity points
3,208
look up table in asic

LUT(lookup table) in FPGA can be implemented in ASIC? Sum of Product with LUT in ASIC?
 

lookup tables in asic

LUT can not be implemented in ASIC. LUT is special in FPGA.
 

how to implement sum of product in ASIC?
 

freeinthewind said:
LUT can not be implemented in ASIC. LUT is special in FPGA.

if so, how did they manage to put it inside the FPGA?
 

FPGAs are basically arrays of logic elements, where the lookup table (usually implemented in some form of EEPROM) forms part of the logic element, and this handles all combinational logic. Any combinational logic can be implemented by just simply programming this lookup EEPROM.
In ASICs, combinational logic is handled using real logic gates. So from a lookup table, you optimize it using methods like karnaugh maps and just provide the HDL code for it.
 

LUT can be implemented easily in VHDL. Just generate this table in your library and use it directly in your code. Tests show that this method uses minimum silicon area.
Best idea: change any other logic into LUT and you will see the difference.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top