mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +00:00
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:
parent
a17d27247e
commit
e5cbba264f
@ -200,10 +200,10 @@ brk_jmp: jmp $0000
|
||||
|
||||
spsave: .res 1
|
||||
|
||||
irqcount: .byte 0
|
||||
|
||||
.segment "ZPSAVE"
|
||||
|
||||
zpsave: .res zpspace
|
||||
|
||||
.bss
|
||||
irqcount: .byte 0
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user