Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
178B

  1. CODE 2DROP ( a b -- )
  2. HL POP, HL POP, chkPS,
  3. ;CODE
  4. CODE 2DUP ( a b -- a b a b )
  5. HL POP, ( b ) DE POP, ( a )
  6. chkPS,
  7. DE PUSH, HL PUSH,
  8. DE PUSH, HL PUSH,
  9. ;CODE