mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
95686b169e
- This will allow for different "formulas". - This brings things together in one place. git-svn-id: svn://svn.cc65.org/cc65/trunk@5716 b7a2c559-68d2-44c3-8de9-860c34a00d81
17 lines
484 B
ArmAsm
17 lines
484 B
ArmAsm
;
|
|
; Oliver Schmidt, 2012-06-10
|
|
;
|
|
; This module supplies a 4 byte DOS 3.3 header
|
|
; containing the load address and load length.
|
|
;
|
|
|
|
.export __EXEHDR__ : absolute = 1 ; Linker referenced
|
|
.import __LOADADDR__, __LOADSIZE__ ; Linker generated
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
.segment "EXEHDR"
|
|
|
|
.addr __LOADADDR__ ; Load address
|
|
.word __LOADSIZE__ ; Load length
|