X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libsrc%2Fapple2%2Fexehdr.s;h=eb05e66bee1e5080b2af7dd8a11e57efd29552de;hb=7ebaec18024dc2a94de538637c20c5b4c65e530c;hp=5ebd6f7f1c8b3b0ba8e63f9f820da85e61f36a50;hpb=9cc99876b23274f73d58b2aa0e519799ba49e049;p=cc65 diff --git a/libsrc/apple2/exehdr.s b/libsrc/apple2/exehdr.s index 5ebd6f7f1..eb05e66be 100644 --- a/libsrc/apple2/exehdr.s +++ b/libsrc/apple2/exehdr.s @@ -5,16 +5,12 @@ ; containing the load address and load length. ; - .export __EXEHDR__ : absolute = 1 ; Linker referenced - .import __RAM_START__, __ZPSAVE_RUN__ ; Linker generated - .import __MOVE_START__, __MOVE_LAST__ ; Linker generated - - .linecont + + .export __EXEHDR__ : absolute = 1 ; Linker referenced + .import __LOADADDR__, __LOADSIZE__ ; Linker generated ; ------------------------------------------------------------------------ .segment "EXEHDR" - .addr __RAM_START__ ; Start address - .word __ZPSAVE_RUN__ - __RAM_START__ + \ - __MOVE_LAST__ - __MOVE_START__ ; Size + .addr __LOADADDR__ ; Load address + .word __LOADSIZE__ ; Load length