mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 03:30:05 +00:00
074e10d288
When a program starts running, INIT is moved from one place to another place. Then, INIT's code is executed; and, the first place is re-used for variables. After the INIT code has finished, the second place can be re-used by the heap and the C stack. That means that initiation code and data won't waste any RAM space after they stop being needed.