Some advance warning: as of current SDCC development version 4.2.10, and for the forthcoming release version 4.3.0, the _sdcc_external_startup function has been renamed to __sdcc_external_startup (note the additional underscore at the beginning). See SDCC feature request #859.
This means all the examples in this repository that define a function with the former name will no longer work properly, because the function will not be called. Also, the failure may be entirely transparent, because SDCC may not warn about an unused function.
Perhaps old and new versions of SDCC can be accommodated with some conditional defines?
Some advance warning: as of current SDCC development version 4.2.10, and for the forthcoming release version 4.3.0, the
_sdcc_external_startupfunction has been renamed to__sdcc_external_startup(note the additional underscore at the beginning). See SDCC feature request #859.This means all the examples in this repository that define a function with the former name will no longer work properly, because the function will not be called. Also, the failure may be entirely transparent, because SDCC may not warn about an unused function.
Perhaps old and new versions of SDCC can be accommodated with some conditional defines?