?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.     OUTPUT "org.bin"
  2.  
  3.     DEVICE NONE
  4.     ; no errors/warnings expected because of the --longptr option
  5.     ORG $FFFF
  6. longptr1:   DB      'A'
  7. longptr2:   DB      'B'
  8. longptr3:   DB      'C'
  9.  
  10.     DEVICE ZXSPECTRUM48
  11.     ; the --longptr should NOT affect actual devices => errors will be reported
  12.     ORG $FFFF
  13. devbyte1:   DB      'a'
  14. devbyte2:   DB      'b'     ; error crossing $10000 address boundary
  15. devbyte3:   DB      'c'     ; silent after first error reported
  16.