Forum Discussion
Altera_Forum
Honored Contributor
21 years agoAccessing FPGA RAM section
Dear all, how is it possible to tell the linker to place variables in a RAM that is in the FPGA? I have the following problem: I got a design with 12k RAM on FPGA and in my software projec...
Altera_Forum
Honored Contributor
21 years agohi nathan,
I believe this is a case of "the missing dot syndrome" ... which has bitten me many, many times ;-) Try the following change: fm: UINT8 gc_buffer[8][1536] __attribute__ ((section ("int_ram"))); to: UINT8 gc_buffer[8][1536] __attribute__ ((section (".int_ram"))); Best Regards, --Scott