Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 wiersze
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