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.

16 lines
275B

  1. ; Is (HL) a double-quoted string? If yes, spit what's inside and place (HL)
  2. ; at char after the closing quote.
  3. ; Set Z if there was a string, unset otherwise.
  4. spitQuoted:
  5. ld a, (hl)
  6. cp '"'
  7. ret nz
  8. inc hl
  9. .loop:
  10. ld a, (hl)
  11. inc hl
  12. cp '"'
  13. ret z
  14. call stdioPutC
  15. jr .loop