Tagged Questions
5
votes
3answers
89 views
Does the synthesizer care about one or two processes?
There are two popular ways of coding a state machine in VHDL: one process or two processes. There are rumors (and it is taught in some colleges) that two processes might result in better hardware. ...
4
votes
1answer
104 views
Array indexes to wide for array
I have the following problem when accessing arrays in VHDL:
Say I have an array which is not of size 2^n, for example of size 6.
Then, if I want to access this array using an index of width 3 bits ...
2
votes
2answers
197 views
“Dead code” in Xilinx
I have some VHDL code I'm writing for a class. However, the synthesis tool identifies cell3, cell2, and cell1 as "dead" code and it won't synthesize it.
I really have no idea what's going on to ...
0
votes
2answers
63 views
my synthesizable division (shift) is delayed? [closed]
I have written an FFT which works well in the simulation (using modelsim). However, since I am using some division operations (although they are all power of two operands) it is not synthesizable in ...
0
votes
2answers
1k views
VHDL: Finding out/reporting bit width/length of integer (vs. std_logic_vector)?
Say I need a signal to represent numbers from 0 to 5; obviously this needs 3 bits of std_logic to be represented (i.e if MAXVAL=5, then bitwidth= {wcalc "floor(logtwo($MAXVAL))+1"}).
I'm aware I ...