Forum Discussion
Altera_Forum
Honored Contributor
8 years agoCpld max v - i2s
hello everybody I'am a beginner at the VHDL programming. I use CPLD Max V (5M570ZF256C5N) in my internship and I have to write a program in VHDL. the program is selection between two audio source...
Altera_Forum
Honored Contributor
8 years agoHi,
generic ( DATA_WIDTH : integer range 16 to 32;
BITPERFRAME : integer );
Modify the code like bellow,
generic ( DATA_WIDTH : integer := 32;
BITPERFRAME : integer := 0
);
If want to use in the range format then use a signal like a bellow,
signal temp : integer range 0 to DATA_WIDTH := 0; Let me know if this has helped resolve the issue you are facing or if you need any further assistance. Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)