2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 03.06.1998
|
|
|
|
;
|
|
|
|
; Heap variables and initialization.
|
|
|
|
;
|
|
|
|
|
|
|
|
.export __horg, __hptr, __hend, __hfirst, __hlast
|
2000-11-22 22:19:09 +00:00
|
|
|
.constructor initheap, 24
|
2001-03-10 14:19:21 +00:00
|
|
|
.import __BSS_RUN__, __BSS_SIZE__, __STACKSIZE__
|
2000-05-28 13:40:48 +00:00
|
|
|
.importzp sp
|
|
|
|
|
|
|
|
.data
|
|
|
|
|
|
|
|
__horg:
|
|
|
|
.word __BSS_RUN__+__BSS_SIZE__ ; Linker calculates this symbol
|
|
|
|
__hptr:
|
|
|
|
.word __BSS_RUN__+__BSS_SIZE__ ; Dito
|
|
|
|
__hend:
|
|
|
|
.word __BSS_RUN__+__BSS_SIZE__
|
2000-11-22 22:19:09 +00:00
|
|
|
__hfirst:
|
2000-05-28 13:40:48 +00:00
|
|
|
.word 0
|
|
|
|
__hlast:
|
|
|
|
.word 0
|
|
|
|
|
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Initialization. Will be called from startup!
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
initheap:
|
2000-05-28 13:40:48 +00:00
|
|
|
sec
|
|
|
|
lda sp
|
2001-03-10 14:19:21 +00:00
|
|
|
sbc #<__STACKSIZE__
|
2000-05-28 13:40:48 +00:00
|
|
|
sta __hend
|
|
|
|
lda sp+1
|
2001-03-10 14:19:21 +00:00
|
|
|
sbc #>__STACKSIZE__
|
2000-05-28 13:40:48 +00:00
|
|
|
sta __hend+1
|
|
|
|
rts
|
|
|
|
|