?login_element?

Subversion Repositories NedoOS

Rev

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

  1. ; this is currently (v1.18.2) invalid construction of nested DUP->EDUP inside different conditional blocks
  2. ; and will not work, but the sjasmplus does segfault hard on this instead of just reporting error
  3. i1: ifndef SKIP_DUP
  4.         dup 3
  5.         daa
  6.     else
  7.         nop
  8.     endif
  9. i2: ifndef SKIP_DUP
  10.         edup
  11.     endif
  12.