Rev 539 | Blame | Compare with Previous | Last modification | View Log | Download
# file opened: org.asm1 0000 OUTPUT "org.bin"2 00003 0000 DEVICE NONE4 0000 ; no errors/warnings expected because of the --longptr option5 0000 ORG $FFFF6 FFFF 41 longptr1: DB 'A'7 0000 42 longptr2: DB 'B'8 0001 43 longptr3: DB 'C'9 000210 0002 DEVICE ZXSPECTRUM4811 0002 ; the --longptr should NOT affect actual devices => errors will be reported12 0002 ORG $FFFF13 FFFF 61 devbyte1: DB 'a'org.asm(14): error: Write outside of device memory at: 6553614 0000 62 devbyte2: DB 'b' ; error crossing $10000 address boundary15 0001 63 devbyte3: DB 'c' ; silent after first error reported16 0002# file closed: org.asmValue Label------ - -----------------------------------------------------------0xFFFF X devbyte10x10000 X devbyte20x10001 X devbyte30xFFFF X longptr10x10000 X longptr20x10001 X longptr3