Guest
#4112219
Hello I am writing a simple code for a 2 dimensional complex number (integer) array in VHDL. The matrix is basically [ 1 1 1 1 , 1 -1 j -j, 1 -1 j -j, 1 1 -1 -1, 1 -1 -j j] This is my code
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
Compiling with vhdlan gives me this error:
"Parsing design file 'IFFT_matrix.vhd'
Error-[IEEEVHDLSYNTAXERR] Syntax error
IFFT_matrix.vhd, 18
...x (to_integer(unsigned(address_r),
to_integer(unsigned(address_c)))));...
^
Syntax error detected during VHDL parsing.
Error-[IEEEVHDLSYNTAXERR] Syntax error
IFFT_matrix.vhd, 19
...x (to_integer(unsigned(address_r),
to_integer(unsigned(address_c)))));...
^
Syntax error detected during VHDL parsing.
"IFFT_matrix.vhd": errors: 2; warnings: 0.
[oalsamma@bifur ~/intel]$ gedit IFFT_matrix.vhd"
I cannot quite figure out what to fix. Can you help please?