1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/cbm/overlayaddr.s
2013-05-29 01:12:24 +02:00

48 lines
785 B
ArmAsm

;
; Oliver Schmidt, 2013-05-28
;
; This module supplies the load addresses that are expected by Commodore
; machines in the first two bytes of overlay disk files.
;
; The following symbol is used by linker config to force the module
; to get included into the output file
.export __OVERLAYADDR__: absolute = 1
.segment "OVL1ADDR"
.addr *+2
.segment "OVL2ADDR"
.addr *+2
.segment "OVL3ADDR"
.addr *+2
.segment "OVL4ADDR"
.addr *+2
.segment "OVL5ADDR"
.addr *+2
.segment "OVL6ADDR"
.addr *+2
.segment "OVL7ADDR"
.addr *+2
.segment "OVL8ADDR"
.addr *+2
.segment "OVL9ADDR"
.addr *+2