?login_element?

Subversion Repositories NedoOS

Rev

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

  1. ; regular correct nested DUP (just to be sure it still works)
  2.     DUP     2
  3.         DUP     2
  4.             daa
  5.         EDUP
  6.     EDUP
  7.  
  8. ; first variant of problem -> correct amount of EDUPs
  9. ; but nested <count> expression syntax error happens, making nested DUP suddenly missing
  10.     DUP     2
  11.         nop
  12.     DUP
  13.         nop
  14.     EDUP
  15.     EDUP
  16.  
  17. ; second variant of problem -> EDUP missing for real, completely    
  18.     DUP     3
  19.         DUP     4
  20.             nop
  21.     EDUP
  22.     ; the line 11 will be reported, even if it looks like it has EDUP, but that one is
  23.     ; consumed by nested DUP at line 12
  24.