Skip to content

Commit 5ded968

Browse files
Optimize bss length check
1 parent 8cc99a8 commit 5ded968

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/startup/cstartup.asm

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ _init:
4141
call 0020848h ; _RunInicOff, assumes iy=flags
4242
di
4343
ld bc,__len_bss ; BSS byte size
44-
sbc hl,hl
45-
adc hl,bc
46-
jr z,__no_bss
47-
ld hl,__low_bss
48-
call 00210DCh ; _MemClear
49-
__no_bss:
44+
ld hl,__low_bss ; BSS low address
45+
push bc
46+
push hl
47+
call 0000B0h ; _memclear
48+
pop hl
49+
pop hl
5050
push iy
5151
ld hl,0E00005h
5252
push hl

0 commit comments

Comments
 (0)