Placing variables at specific address generates large binary file
Posted on January 08, 2016 at 12:24 I have to place some variables at specific address in memory. I'm using GCC. I declare and use variable like this: uint8_t __attribute__((section (''.mySection''))) buffer = 5; int main() { buffer = 10;...