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

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