home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progbas / ascsu205.arj / SHELL.ASI < prev    next >
Text File  |  1991-08-23  |  260b  |  13 lines

  1. print "On which drive is your COMMAND.COM (don't type the colon)? ";
  2. wait:
  3. a$=inkey$
  4. if a$="" then wait:
  5. print a$
  6. path1$=a$+":"
  7. path2$=path1$+"\"
  8. path3$=path2$+"command.com"
  9. cls
  10. print "Use the DOS command EXIT to return to ASIC."
  11. call (path3$,"")
  12.  
  13.