LUT in verilog

Guest #4493286
Rate this post
useful
not useful
you could write a Matlab script printing the relevant code snippet 
(inside of a case block) in verilog syntax. Something like this 
(untested!) Matlab code here:

for i=1:length
 fprintf('8'h%x: out <= 8'h%x\n', i, value(i));
end

The result you copy & paste into you verilog file.
OP #4493382
Rate this post
useful
not useful
Ok, this is a good way to solve problem of copy,Thanks.
But about the LUT creation itself?

For example if i want a LUT of a function sqrt((1/x)+1) with input fixed 
because i have a fixed point representation, how can i get the function 
output?

Is there a function ?


excuse me, but i've never done this.
Guest #4493766
Rate this post
useful
not useful
Of course there is a function in Matlab to calculate this. And there is 
the function fixdt() in Matlab to create a fixed point representation of 
your numbers.

This is more a Matlab problem rather than a Verilog problem, right?

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now