diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-14 06:45:36 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-14 06:45:36 -0400 |
| commit | be048d3184d451c76cf56dd706be8d087c477d77 (patch) | |
| tree | 921450c1b11e6fea5232cb8e5e176a53e7a3958e /src/exehdr.s | |
| parent | 66219401006e845f1a176e6a78c4682bd9de8785 (diff) | |
| download | fujinet-chat-be048d3184d451c76cf56dd706be8d087c477d77.tar.gz | |
The Great Migration: move all the screen memory to the $4000-$7FFF bank window, move code to $8000, move data/rodata/bss to $2000, move rx_buf and tx_buf, etc etc.
Diffstat (limited to 'src/exehdr.s')
| -rw-r--r-- | src/exehdr.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exehdr.s b/src/exehdr.s index 7abb7c1..941e286 100644 --- a/src/exehdr.s +++ b/src/exehdr.s @@ -1,11 +1,11 @@ ; This file defines the EXE header and main chunk load header for Atari executables .export __EXEHDR__: absolute = 1 - .import __MAIN_START__, __BSS_LOAD__ + .import __MAIN_START__, __CODE_SIZE__ .segment "EXEHDR" .word $FFFF .segment "MAINHDR" .word __MAIN_START__ - .word __BSS_LOAD__ - 1 + .word __MAIN_START__ + __CODE_SIZE__ - 1 |
