]> git.sur5r.net Git - cc65/commit
Changed run location of INIT segment.
authorOliver Schmidt <ol.sc@web.de>
Wed, 14 Oct 2015 20:52:09 +0000 (22:52 +0200)
committerOliver Schmidt <ol.sc@web.de>
Wed, 14 Oct 2015 20:52:09 +0000 (22:52 +0200)
commit0ee9b2e446198746c3a05b142ecd00784becf727
treedb53fbbfd9e94cb9d3077108f321047d649580ac
parent023b461bb8a9ad86c22d3c8624d48895d38b1dd1
Changed run location of INIT segment.

So far the INIT segment was run from the later heap+stack. Now the INIT segment is run from the later BSS. The background is that so far the INIT segment was pretty small (from $80 to $180 bytes). But upcoming changes will increase the INIT segment in certain scenarios up to ~ $1000 bytes. So programs with very limited heap+stack might just not been able to move the INIT segment to its run location. But moving the INIT segment to the later BSS allows it to occupy the later BSS+heap+stack.

In order to allow that the constructors are _NOT_ allowed anymore to access the BSS. Rather they must use the DATA segment or the new INITBSS segment. The latter isn't cleared at any point so the constructors may use it to expose values to the main program. However they must make sure to always write the values as they are not pre-initialized.
35 files changed:
cfg/c128-overlay.cfg
cfg/c128.cfg
cfg/c16.cfg
cfg/c64-overlay.cfg
cfg/c64.cfg
cfg/cbm510.cfg
cfg/cbm610.cfg
cfg/pet.cfg
cfg/plus4.cfg
cfg/vic20-32k.cfg
cfg/vic20.cfg
libsrc/atari/initcwd.s
libsrc/c128/crt0.s
libsrc/c128/mainargs.s
libsrc/c16/crt0.s
libsrc/c16/mainargs.s
libsrc/c64/crt0.s
libsrc/c64/mainargs.s
libsrc/cbm/filedes.s
libsrc/cbm/filevars.s
libsrc/cbm/read.s
libsrc/cbm/write.s
libsrc/cbm510/mainargs.s
libsrc/cbm610/mainargs.s
libsrc/common/_cwd.s
libsrc/common/moveinit.s
libsrc/common/zerobss.s
libsrc/pet/crt0.s
libsrc/pet/mainargs.s
libsrc/plus4/crt0.s
libsrc/plus4/mainargs.s
libsrc/runtime/callmain.s
libsrc/runtime/stkchk.s
libsrc/vic20/crt0.s
libsrc/vic20/mainargs.s