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

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