Hi all, I'm having problem porting some project from Keil to SES since my project use absolute memory location to put some variable that will be share between main application and the bootloader and it seems i can't do it in SES, at least in an easy way. With Keil, i can use __attribute__((at(0x20002000))), for example, to place a variable at memory location 0x20002000 but since the "at" attribute is a Keil-specific feature, i can't use it with SES. In SES, i can use attribute__((section("name")…