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

  1. 64 CONSTANT INBUFSZ
  2. : RDLNMEM+ 0x53 RAM+ @ + ;
  3. ( current position in INBUF )
  4. : IN> 0 RDLNMEM+ ;
  5. ( points to INBUF )
  6. : IN( 2 RDLNMEM+ ;
  7. ( points to INBUF's end )
  8. : IN) INBUFSZ 2+ RDLNMEM+ ;
  9. ( flush input buffer )
  10. ( set IN> to IN( and set IN> @ to null )
  11. : (infl) 0 IN( DUP IN> ! ! ;