?login_element?

Subversion Repositories NedoOS

Rev

Rev 126 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ; label as macro name (new in v1.13.1) triggers segfault with "--sym=..." option
  2. LabelAsMacroName    MACRO  arg1?, arg2?
  3.                         ld  a,arg1?
  4.                         ld  hl,arg2?
  5.                     ENDM
  6.  
  7.                 LabelAsMacroName 1,$1234
  8.  
  9. SomeRegularLabel:   nop
  10.