Mirror of CollapseOS
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
484B

  1. ( At this point, Z is set if we have a match. In all cases,
  2. we want to pop HL and DE )
  3. DE POP, ( <-- lvl 4 )
  4. IFZ, ( match, we're done! )
  5. HL POP, BC POP, HL POP, ( <-- lvl 1-3 ) DE PUSH,
  6. PUSH1, JPNEXT,
  7. THEN,
  8. ( no match, go to prev and continue )
  9. DE DECd, DE DECd, DE DECd, ( prev field )
  10. DE PUSH, ( --> lvl 4 )
  11. EXDEHL,
  12. LDDE(HL),
  13. ( cont. )