Altera_Forum
Honored Contributor
19 years agostruct
The following code works fine:
# define RAMSHADOWBASE 0x01010000# define TESTVARIABLE (*(unsigned int*)RAMSHADOWBASE) Now I want to add a struct on the same way. Thus I want to place a structure on a predefined adress in RAM memory. Struct looks like: struct Defs { unsigned int Nr; unsigned int Place; } lacingHole[40]; Somebody a solution for this?