home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 31 / PCPLUS.BAT
Encoding:
DOS Batch File  |  1989-01-01  |  2.3 KB  |  98 lines

  1. echo off
  2. cd intro
  3. scrdisp title
  4. scrdisp apr1
  5. :menu
  6. cd ..\intro
  7. scrdisp apr2
  8. if errorlevel 193 goto menu
  9. if errorlevel 192 goto F6
  10. if errorlevel 191 goto F5
  11. if errorlevel 190 goto F4
  12. if errorlevel 189 goto F3
  13. if errorlevel 188 goto F2
  14. if errorlevel 187 goto F1
  15. if errorlevel  28 goto menu
  16. :F1
  17. cd ..\mixc
  18. echo off
  19. cls
  20. echo This is the second part of the MIX C programming environment. It
  21. echo consists of the MIX C editor and the trace debugger in the
  22. echo following files...
  23. echo.
  24. dir
  25. echo.
  26. pause
  27. cls
  28. echo Before you try to use the programs, you should copy them from the
  29. echo SuperDisk onto another floppy or a sub-directory of your hard disk.
  30. echo     To do this, leave the PC PLUS menu and return to the A prompt,
  31. echo and then copy the entire contents of the MIXC sub-directory to
  32. echo floppy or hard disk. Once copied, you can run the editor by moving
  33. echo to the floppy disk or sub-directory and typing EDIT. The trace/
  34. echo debugger can be run by typing CTR, followed by the filename of the
  35. echo C object file you are trying to debug. See the April issue of 
  36. echo PC PLUS for more details.
  37. echo.
  38. echo To return to the PC PLUS menu
  39. pause
  40. echo.
  41. goto menu
  42. :F2
  43. cd ..\utils
  44. cls
  45. echo This is a pop-up printer setup utility for Epson and IBM printers.
  46. echo You can install it for your own printer using the PKINST program,
  47. echo also supplied. Both programs, and documentation are in the UTILS
  48. echo sub-directory.
  49. echo.
  50. echo To pop PKICK onto the screen
  51. pause
  52. echo.
  53. echo.
  54. echo.
  55. echo.
  56. echo.
  57. echo.
  58. echo.
  59. echo.
  60. echo.
  61. echo Press [Esc] to remove PKICK
  62. echo and return to the PC PLUS menu
  63. PKICK
  64. goto menu
  65. :F3
  66. cd ..\games
  67. CRIB6
  68. goto menu
  69. :F4
  70. cd ..\games
  71. JASON
  72. goto menu
  73. :F5
  74. cd ..\shorties
  75. cls
  76. echo Shorties are small but useful utilities, further details of
  77. echo which are in the SuperDisk section of the magazine. Some have
  78. echo documentation in .DOC files, which you can read using the MS-DOS
  79. echo TYPE command.
  80. echo     NOTE: The program REVERSE is an April Fool which reverses
  81. echo the text on your screen. It won't do any harm to your PC, and
  82. echo can be removed from your machine by pressing [Ctrl][Alt][Del]
  83. echo or turning your machine off and then on again.
  84. echo.
  85. echo This is the contents of the SHORTIES sub-directory...
  86. dir
  87. echo.
  88. echo To return to the PC PLUS menu
  89. pause
  90. goto menu
  91. :F6
  92. cd ..\
  93. cls
  94. :end
  95.  
  96.  
  97.  
  98.