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.

36 lines
279B

  1. jp test
  2. .inc "core.asm"
  3. .inc "lib/ari.asm"
  4. testNum: .db 1
  5. test:
  6. ld sp, 0xffff
  7. ld de, 12
  8. ld bc, 4
  9. call multDEBC
  10. ld a, l
  11. cp 48
  12. jp nz, fail
  13. call nexttest
  14. ; success
  15. xor a
  16. halt
  17. nexttest:
  18. ld a, (testNum)
  19. inc a
  20. ld (testNum), a
  21. ret
  22. fail:
  23. ld a, (testNum)
  24. halt