X
Xin Xiao
Guest
I'm modeling a cache memory in vhdl. What would be the difference between
using a variable or a signal to model my memory?
type mem_cache is array (range) of lines;
signal cache : mem_cache;
- or -
variable cache : mem_cache;
using a variable or a signal to model my memory?
type mem_cache is array (range) of lines;
signal cache : mem_cache;
- or -
variable cache : mem_cache;