I've to include two binary files, one at address 0x2000 and other at 0x3000. These are absolute address in the CODE section. These files includes ARM cortex M0 firmwares which can be switched to using a bootloader code.
I included an image.s file in my "User group" in my Keil Project workspace.
;/*------------------ image.s -----------------*/
AREA _image, CODE, READONLY
INCBIN ./Objects/blue2000.bin
INCBIN ./Objects/red3000.bin
END
____________________________________________________
How to locate these binary images at absolute address?