Difficulty: Easy
Correct Answer: look-up table
Explanation:
Introduction / Context:
The Altera (Intel) FLEX10K family is a classic FPGA architecture predating modern Stratix/Arria/Cyclone lines. A key point for designers is recognizing whether the fabric is PLA-like (programmable arrays) or LUT-based, because this affects how logic maps and how timing behaves.
Given Data / Assumptions:
Concept / Approach:
LUTs implement boolean functions by addressing small SRAM tables with input bits and reading the stored output bit. This method scales and supports logic optimization by synthesis tools. FLEX10K maps user logic into LUT-based logic elements (LEs) grouped into larger blocks with local interconnects.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments