home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / CROSSASM / ASM370.ZIP / RUNDEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1985-06-15  |  2.1 KB  |  83 lines

  1. REM  PC/370 demo program batch command file.
  2. REM  This command file requires all PC/370 files on default drive.
  3. REM  This command file also requires that LU.EXE be used to unload
  4. REM  PC370.LBR file prior to execution.  The command is LU -A PC370.
  5. A370 PET/LX
  6. COPY PET.PRN CON:
  7. A370 TIMER/LX
  8. COPY TIMER.PRN CON:
  9. A370 DAT/LX
  10. COPY DAT.PRN CON:
  11. REM  The following command illustrates how a subroutine library is created.
  12. ERASE L370.LIB
  13. COPY PET.OBJ/B+TIMER.OBJ/B+DAT.OBJ/B L370.LIB/B
  14. ERASE PET.PRN
  15. ERASE PET.OBJ
  16. ERASE TIMER.PRN
  17. ERASE TIMER.OBJ
  18. ERASE DAT.PRN
  19. ERASE DAT.OBJ
  20. A370 DEMOPNUM/LX
  21. COPY DEMOPNUM.PRN CON:
  22. ERASE DEMOPNUM.PRN
  23. L370 DEMOPNUM/LX
  24. COPY DEMOPNUM.LST CON:
  25. ERASE DEMOPNUM.LST
  26. REM  First sample execution of prime number generator program.
  27. DEMOPNUM
  28. ERASE DEMOPNUM.COM
  29. ERASE DEMOPNUM.OBJ
  30. A370 DEMOIO/LX
  31. COPY DEMOIO.PRN  CON:
  32. ERASE DEMOIO.PRN
  33. REM  This program illustrates sequential and random file access emthods.
  34. L370 DEMOIO/G
  35. ERASE DEMOIO.OBJ
  36. ERASE TESTF.DAT
  37. ERASE TESTV.DAT
  38. A370 DEMOSVC/LX
  39. COPY DEMOSVC.PRN  CON:
  40. ERASE DEMOSVC.PRN
  41. REM  To illustrate console I/O, enter characters and <cr> when requested.
  42. L370 DEMOSVC/G
  43. ERASE DEMOSVC.OBJ
  44. A370 DEMO8Q/LX
  45. COPY DEMO8Q.PRN  CON:
  46. ERASE DEMO8Q.PRN
  47. REM  This program uses recursive stack to solve 8 queens chess problem.
  48. L370 DEMO8Q/G
  49. ERASE DEMO8Q.OBJ
  50. A370 DEMOSRC/LX
  51. COPY DEMOSRC.PRN  CON:
  52. ERASE DEMOSRC.PRN
  53. L370 DEMOSRC/LX
  54. COPY DEMOSRC.LST CON:
  55. ERASE DEMOSRC.LST
  56. REM This program reads all ALC files on diskette and counts records.
  57. DEMOSRC ????????.ALC
  58. ERASE DEMOSRC.COM
  59. ERASE DEMOSRC.OBJ
  60. A370 DEMOAST1/LX
  61. COPY DEMOAST1.PRN CON:
  62. L370 DEMOAST1/LX
  63. COPY DEMOAST1.LST CON:
  64. REM  This program illustrates ASSIST log dump options.
  65. DEMOAST1
  66. COPY DEMOAST1.LOG CON:
  67. ERASE DEMOAST1.OBJ
  68. ERASE DEMOAST1.PRN
  69. ERASE DEMOAST1.LST
  70. ERASE DEMOAST1.LOG
  71. A370 DEMOAST2/LX
  72. COPY DEMOAST2.PRN CON:
  73. L370 DEMOAST2/LX
  74. COPY DEMOAST2.LST CON:
  75. REM  This program illustrates ASSIST input and output file options.
  76. DEMOAST2
  77. COPY DEMOAST2.LOG CON:
  78. ERASE DEMOAST2.OBJ
  79. ERASE DEMOAST2.PRN
  80. ERASE DEMOAST2.LST
  81. ERASE DEMOAST2.LOG
  82. REM  End of demo programs.  Enjoy your PC/370 virtual machine!
  83.