I am using a Renesas microcontroller, and I found this line in sample code
static uint8_t Video[SIZE]__attribute((section("NC_BSS"),aligned(32)));
I am wondering what this mean?
I am aware that the attribute section means (as it is explained here that the array is being located in a particular section. But I have no idea what this NC_BSS section is... is there anyone here familiar with this or Renesas programming?
Also, a simple explanation of what the "aligned 32" would imply in this particular case will be greatly appreciated