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.

14 lines
454B

  1. (entry) ~ACIA ( Set RST 38 jump ) PC ORG @ 0x39 + !
  2. AF PUSH, HL PUSH, DE PUSH,
  3. ( Read our character from ACIA into our BUFIDX )
  4. ACIA_CTL INAi,
  5. 0x01 ANDi, ( is ACIA rcv buf full? )
  6. IFNZ,
  7. ( correct interrupt cause )
  8. ACIAW> LDHL(n),
  9. ( is it == to ACIAR>? )
  10. ( +0 == ACIAR> )
  11. DE ACIAR> LDd(n),
  12. ( carry cleared from ANDi above )
  13. DE SBCHLd, ( cont. )