home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / asmenv19.zip / TA386.BAT < prev    next >
DOS Batch File  |  1993-11-14  |  2KB  |  41 lines

  1. ══════════════════════════════════════════════════════════
  2. Auxiliary file distributed with ASMEnv.EXE for environment
  3. control work.
  4. Copyright (C) 1993 by Gene Fowler
  5.  
  6. TA386.BAT is kept in the root directory and is called (\ta386)
  7. to enter ASMENv (which is in the TA directory). The purpose is
  8. is to move \td\config.386 into \config.sys, \ta\autoexec.386
  9. into \autoexec.bat and reboot. The autoexec.bat will give you
  10. a prompt that reminds you of your configuration, set up the
  11. path you want while working in ASMEnv, and put you in ASMEnv.
  12. You may, then, having edited your paths for the calls, use
  13. TD386 and TF386 from within ASMEnv. On Exit, you still have
  14. that prompt but your ordinary path.
  15.  
  16. ══════════════════════════════════════════════════════════
  17. @echo off
  18. echo This is not to give ASMEnv any access to higher memory.
  19. echo.
  20. echo This will allow runs of Turbo Debugger and Turbo Profiler from
  21. echo within ASMEnv with adequate RAM for the programs you are likely
  22. echo to run. ASMEnv.CFG should have Paths using 386 versions.
  23. echo.
  24. echo Now, CONFIG.SYS and AUTOEXEC.BAT files will be set up. Press
  25. echo a key when asked. In ASMEnv, check Paths for 386 v. of TD and TProf.
  26. echo If you exit ASMEnv temporarily, re-enter with \TA386, not \TA.
  27. echo.
  28. echo On Exiting ASMEnv, run a SetDOS.BAT or a SetWin.BAT for a usual
  29. echo configuration.
  30. echo.
  31. copy c:\config.sys c:\config.env
  32. copy c:\autoexec.bat c:\autoexec.env
  33. copy c:\ta\autoexec.386 c:\autoexec.bat
  34. copy c:\td\config.386 c:\config.sys
  35. echo.
  36. echo Slowing down reboot while files flush...
  37. echo.
  38. pause
  39. reboot.com
  40.  
  41.