Can I store a 4 Bytes of const object into end of flash memory region (for example address 0x17f80).
Based on Cosmic compiler document, I am trying to use #pragma to store the const object into flash memory region 0x17f80.
Even I have configured the liker config,

Then I have added below code in .c file.
#pragma section const {applflag}
const u32 appl_flag = 0xAA55AA55;
#pragma section const {}
But, I cannot see the value 0xAA55AA55 in the address.
Please find the linker file commands below for your reference.
# Segment ApplFlag:
+seg .applflag -b 0x17f80 -m 0x80 -n .applflag
Please correct me if I did any mistake.
