1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +00:00

Fixed a bug: Because of a wrong label position the code that cleared the

BSS was skipped.


git-svn-id: svn://svn.cc65.org/cc65/trunk@1540 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-18 18:54:36 +00:00
parent ad1a4c370d
commit 3a95ae002b

View File

@ -71,7 +71,7 @@ InputByte = Header ; Byte read from input
; Relocation
RelocVal = Header + 1 ; Relocation value
.data
.data
Read: jmp $FFFF ; Jump to read routine
.rodata
@ -469,7 +469,7 @@ CalcSizes:
; Control structure is complete now. Clear the bss segment.
; bzero (bss_addr, bss_size)
lda Module
GotMem: lda Module
add TPtr
pha
lda Module+1
@ -485,7 +485,7 @@ CalcSizes:
; code+data segment is still in TPtr.
; C->read (C, C->module, H.tlen + H.dlen)
GotMem: jsr PushCtrl
jsr PushCtrl
lda Module
ldx Module+1
jsr pushax