?login_element?

Subversion Repositories NedoOS

Rev

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

  1. ; same test as "dir_end.asm", but labels are defined with colons (was bugged before!)
  2.  
  3.         ld      hl,end
  4. End:            ; mixed case = label (not directive)
  5. .end:   ALIGN   ; .END should not work at first column, not even with --dirbol enabled
  6. end:    DUP 2   ; END should not work at first column, not even with --dirbol enabled
  7.         nop     ; but other directive on the same line (ALIGN, DUP above) must work!
  8.         EDUP
  9. .END:   scf
  10. END:    ccf
  11. .2      ld      b,1         ; China number one! (repeat ld twice)
  12.  .2     ld      c,-1        ; Taiwan number dash one! (repeat ld twice)
  13.         END : no start address provided, and this text should be NOT parsed either
  14.  
  15. Some random text, which is not supposed to be assembled.
  16.