If you encounter any issues after the upgrade, please open a support request TICKET.🙌
The description in the following Knowledge Base article states that with the use of the -binary option in Linker, binary files within 64KB can be assigned to the address range of 0-0x0FFFF.
https://en-support.renesas.com/knowledgeBase/16978856
However, how can binary files larger than 64KB be linked to the project?
To link binary files of any size, create assembly source code and specify the address. Then, use the assembler's BINCLUDE control instruction to include the binary file.
Add the section of (. textfd1_f) starting from address 0x00012000 in the section settings. The starting address can be specified as needed, and 0x00012000 is used here as an example.
Then, use the following statement in the assembly source code to place (App5. bin) in the section of (. textfd1_f).
.SECTION .textfd1_f, TEXTF
$BINCLUDE(App5.bin)
After completing the above settings, compile the project and view the map file. The section (.textfd1_f) beginning at 0x00012000 contains data with a size of 0x1341C, successfully linking binary files that exceed 64KB.