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
306B

  1. ; the ZX Spectrum BASIC firmware scans the keyboard for ASCII codes on clock interrupts
  2. ; this routine just waits for a key and reads its value
  3. k_getc:
  4. ;ei
  5. push hl
  6. ld hl, 23611 ; ZXS_FLAGS
  7. res 5, (hl)
  8. .loop:
  9. bit 5, (hl) ; pressed?
  10. jr z, .loop
  11. ld hl, 23560 ; ZXS_LASTK
  12. ld a, (hl)
  13. pop hl
  14. ret