?login_element?

Subversion Repositories NedoOS

Rev

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

  1. ; make some instructions to accept single-comma multi-arg even when --syntax=a mode is specified
  2. ; instructions supporting relaxed multi-arg: dec, inc, pop, push
  3.  
  4. ; errors of double-comma used without --syntax=a mode
  5.  
  6.     dec bc,,de
  7.     inc bc,,de
  8.     push hl,,de
  9.     pop hl,,de
  10.     OPT --reversepop
  11.     pop hl,,de
  12.  
  13. ; enabled --syntax=a mode, and check mixed commas for relaxed instructions
  14.  
  15.     OPT reset --syntax=a
  16.     dec bc,de,,hl,sp,,ix,iy,,b,c,d,e,,h,l,(hl),a
  17.     inc bc,de,,hl,sp,,ix,iy,,b,c,d,e,,h,l,(hl),a
  18.     push bc,de,,hl,af,,ix,iy
  19.     pop bc,de,,hl,af,,ix,iy
  20.     OPT --reversepop
  21.     pop bc,de,,hl,af,,ix,iy
  22.