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.

11 lines
377B

  1. : (spie) DROP ; ( always enabled )
  2. : (spix) ( x -- x, for port B )
  3. 0 SWAP ( rx tx ) 8 0 DO
  4. ( send current bit to TRB, TR's output bit )
  5. DUP 7 I - RSHIFT 1 AND _TRB!
  6. 1 _THB! ( CLK hi )
  7. ( read into rx ) SWAP 1 LSHIFT _D1@ ( tx rx<< x )
  8. 0 _THB! ( CLK lo )
  9. ( out bit is the 6th ) 6 RSHIFT 1 AND OR
  10. SWAP LOOP ( rx tx ) DROP ;