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.

13 lines
417B

  1. : _gti ( -- tindex, that it, index in _dtbl or _atbl )
  2. 0 ( gid ) 0 ( dummy )
  3. BEGIN ( loop until a digit is pressed )
  4. DROP
  5. 1+ DUP 7 = IF DROP 0 THEN ( inc gid )
  6. 1 OVER LSHIFT 0xff -^ ( group dmask ) _get
  7. DUP 0xff = NOT UNTIL _wait
  8. ( gid dmask )
  9. 0xff XOR ( dpos ) 0 ( dindex )
  10. BEGIN 1+ 2DUP RSHIFT NOT UNTIL 1-
  11. ( gid dpos dindex ) NIP
  12. ( gid dindex ) SWAP 8 * + ;