1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-11 14:29:11 +00:00

Suppress call to copydata routine, which seems to

be necessary only in very special cases that
are unclear at the moment.
This commit is contained in:
Stephan Mühlstrasser 2013-07-15 22:45:09 +02:00
parent 0303b0cc6c
commit 608e9875fb

View File

@ -36,10 +36,11 @@ _init: LDX #$FF ; Initialize stack pointer to $01FF
; ---------------------------------------------------------------------------
; Initialize memory storage
; copydata seems to be only necessary for special systems
; JSR zerobss ; Clear BSS segment
; JSR copydata ; Initialize DATA segment
; JSR initlib ; Run constructors
JSR zerobss ; Clear BSS segment
; JSR copydata ; Initialize DATA segment
JSR initlib ; Run constructors
; ---------------------------------------------------------------------------
; Call main()