Thanks, I saw the x-seg options, but it wasn't clear to me how to use that for the EEPROM or my additional RAM space. Do I just supply multiple --code-seg and --data-seg options and then reference them by name using the #pragma tag?
Hi all, I'm just getting started out with SDCC, developing a project for STM8. I'm trying to setup a project where I have a few sections in memory. I need the usual code and RAM sections, but I'm also trying to carve out a section for EEPROM that the compiler should leave alone for configs, and a section of RAM that I want to make sure neither the boot code nor application initializes. Is what I'm trying to do possible, and if so how? Normally (gcc) I would write a linker file but it seems like that's...