File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ SECTIONS {
1414 * reasonably safe to use these.
1515 */
1616
17- PROVIDE ( __rc0 = 0xcb ) ;
17+ __rc0 = 0xcb ;
1818INCLUDE imag-regs.ld
1919ASSERT (__rc0 == 0xcb , " Inconsistent zero page map." )
2020ASSERT(__rc31 == 0xea , " Inconsistent zero page map." )
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ SECTIONS {
1919}
2020
2121/* Provide imaginary (zero page) registers in the BASIC area. */
22- PROVIDE ( __rc0 = 0x0002 ) ;
22+ __rc0 = 0x0002 ;
2323INCLUDE imag-regs.ld
2424ASSERT (__rc0 == 0x0002 , " Inconsistent zero page map." )
2525ASSERT(__rc31 == 0x0021 , " Inconsistent zero page map." )
Original file line number Diff line number Diff line change 11/* Provide imaginary (zero page) registers. */
2- PROVIDE ( __rc0 = 0x0000 ) ;
2+ __rc0 = 0x00 ;
33INCLUDE imag-regs.ld
4- ASSERT (__rc0 == 0x0000 , " Inconsistent zero page map." )
5- ASSERT(__rc31 == 0x001f , " Inconsistent zero page map." )
4+ ASSERT (__rc0 == 0x00 , " Inconsistent zero page map." )
5+ ASSERT(__rc31 == 0x1f , " Inconsistent zero page map." )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ SECTIONS {
1212}
1313
1414/* Provide imaginary (zero page) registers. */
15- PROVIDE ( __rc0 = 0x0000 ) ;
15+ __rc0 = 0x00 ;
1616INCLUDE imag-regs.ld
1717ASSERT (__rc0 == 0x0000 , " Inconsistent zero page map." )
1818ASSERT(__rc31 == 0x001f , " Inconsistent zero page map." )
You can’t perform that action at this time.
0 commit comments