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.

15 lines
443B

  1. : (key)
  2. ( inc then fetch )
  3. [ ACIAR> LITN ] C@ 1+ [ ACIA_BUFSZ 1- LITN ] AND
  4. ( As long as R> == W>-1, it means that buffer is empty )
  5. BEGIN DUP [ ACIAW> LITN ] C@ = NOT UNTIL
  6. DUP [ ACIA( LITN ] @ + C@ ( ridx c )
  7. SWAP [ ACIAR> LITN ] C! ( c )
  8. ;
  9. : (emit)
  10. ( As long at CTL bit 1 is low, we are transmitting. wait )
  11. BEGIN [ ACIA_CTL LITN ] PC@ 0x02 AND UNTIL
  12. ( The way is clear, go! )
  13. [ ACIA_IO LITN ] PC!
  14. ;