symlet
Member level 1
- Joined
- Oct 12, 2012
- Messages
- 41
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Activity points
- 1,616
Hai all,
I try to make a basic design using DA technique. I have two LUT with 2-bits value and input vector with 8-bits (array of 8 (7 downto 0)). My question is how to addressed the LUT with 8-bits input value, as the LUT address only has 2bits? And how to select between the two LUTs?
Table 1:
Table 2:
The requirement of the task is I need to split the constant (LUT's values) into odd and even. The LUT address is '00'-'11' with 4 data values. If I want to set '0' go to table 1 and '1' go to table 2, is it possible? How to access the LUT based on the input data? Need helps,thanks in advance
I try to make a basic design using DA technique. I have two LUT with 2-bits value and input vector with 8-bits (array of 8 (7 downto 0)). My question is how to addressed the LUT with 8-bits input value, as the LUT address only has 2bits? And how to select between the two LUTs?
Table 1:
address | data |
00 | 0 |
01 | h0 |
10 | h2 |
11 | h0+h2 |
address | data |
00 | 0 |
01 | h1 |
10 | h3 |
11 | h1+h3 |