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.

20 lines
210B

  1. ; test local labels
  2. addDE:
  3. push af
  4. add a, e
  5. jr nc, .end ; no carry? skip inc
  6. inc d
  7. .end: ld e, a
  8. pop af
  9. ret
  10. addHL:
  11. push af
  12. add a, l
  13. jr nc, .end ; no carry? skip inc
  14. inc h
  15. .end:
  16. ld l, a
  17. pop af
  18. ret