Move the irqcount variable from BSS into DATA, since it is used by the

interrupt handler, which is installed *before* zerobss is called.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3950 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-02-22 18:04:25 +00:00
parent a17d27247e
commit e5cbba264f

View File

@ -200,10 +200,10 @@ brk_jmp: jmp $0000
spsave: .res 1
irqcount: .byte 0
.segment "ZPSAVE"
zpsave: .res zpspace
.bss
irqcount: .byte 0