]> git.sur5r.net Git - cc65/commitdiff
Move the irqcount variable from BSS into DATA, since it is used by the
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 22 Feb 2009 18:04:25 +0000 (18:04 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 22 Feb 2009 18:04:25 +0000 (18:04 +0000)
interrupt handler, which is installed *before* zerobss is called.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3950 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/plus4/crt0.s

index 032ad7947027003eaa3b588349815de1ed17f9a1..42833b87a594d11a963e677f5b4d6d45053f40b9 100644 (file)
@@ -200,10 +200,10 @@ brk_jmp:        jmp     $0000
 
 spsave:                .res    1
 
+irqcount:       .byte   0
+
 .segment        "ZPSAVE"
 
 zpsave:                .res    zpspace
 
-.bss
-irqcount:       .byte   0