home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 58 / af058a.adf / s / StartupII < prev   
Encoding:
Text File  |  1994-02-18  |  620 b   |  20 lines

  1. resident c:Resident pure
  2. resident c:List pure ;pre-load LIST and CD
  3. resident c:CD pure
  4. resident c:Mount pure ;the next 3 are loaded for speed during startup
  5. resident c:Assign pure
  6. resident c:Makedir pure  
  7. makedir ram:t
  8. assign T: ram:t ;set up T: directory for scripts
  9. makedir ram:env ; set up ENV: directory
  10. assign ENV: ram:env
  11. makedir ram:clipboards ;set up CLIPS: assign
  12. assign CLIPS: ram:clipboards
  13. mount aux:
  14. mount pipe:
  15. resident Mount remove ;if you have enough ram, keep these resident
  16. resident Assign remove  ;by removing these lines
  17. resident Makedir remove
  18. ;
  19. break 1 C ;signal to other process its ok to finish
  20.