I am using Renesas RX66T on a e2studio Version: 2022-04 (22.4.0) with CC-RX compiler.
Is there a way to reserve a certain area of the ROM so that the linker does not insert any variables to the addresses in the range?
Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people's questions & connect with other people.
Volt.Tech
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you already start your section at 0xFFF80010, as far as this project is concern, 0xFFF80000~0xFFF8000F doesn't exist. Isn't this what you want? You choose the start of ROM. If you want to make a middle section disappear, ROM = 0xFFF80000 - 0xFFF8FFFF ROM2=0xFFF90010 - 0xFFFFFFFF use cpu = stridRead more
If you already start your section at 0xFFF80010, as far as this project is concern, 0xFFF80000~0xFFF8000F doesn’t exist. Isn’t this what you want?
You choose the start of ROM. If you want to make a middle section disappear,
ROM = 0xFFF80000 – 0xFFF8FFFF
ROM2=0xFFF90010 – 0xFFFFFFFF
use cpu = stride so the middle section is un-assigned.
From ccrx manual
.section C, ROMDATA B is for RAM. C=constant.
See less