Back

  1.  COPY OF 1.Bat, M.A.M.E ROMS DIRECTORY INSTALLATION
  2. ----------------------------------------------------------------------------
  3.  
  4. @ECHO OFF
  5. :XCOPY32
  6. CLS
  7. echo.
  8. echo.
  9. echo.
  10. echo. Installation of: "Rom Files Only"
  11. echo.
  12. echo.
  13. echo  When you are ready to begin copying the contents of
  14. echo  drive D:\ (CD/DVD-ROM), press any key.
  15. echo.
  16. echo  NOTE: All files from drive D:\ will be copied directly
  17. echo  to your C:\MAME\ROMS directory.
  18. echo.
  19. echo  All ROM files must be on root of your CD. E.g D:\Pacman.ZIP
  20. echo.
  21. echo.
  22. pause
  23. cls
  24. xcopy32 D:\ C:\MAME\ROMS /E
  25. cls
  26. echo.
  27. echo.
  28. echo.
  29. echo   1- To install another ROM DVD or ROM CD.
  30. echo.
  31. echo   2- To Exit.
  32. echo.
  33. CHOICE /C:12 /N "Your Choice: "
  34. IF errorlevel==2 GOTO END
  35. IF errorlevel==1 GOTO XCOPY32
  36.  
  37. :END
  38. cls
  39. echo.
  40. echo.
  41. echo.
  42. echo   Please See the ReadME file on how to refresh the games list.
  43. echo.
  44. echo.
  45. CHOICE /C:1 /N /T:1,08 "   Arcade Machine will now RE-START"
  46. IF errorlevel==1 GOTO res
  47. :res

Back


  1.  
  2. COPY OF 2.BAT SNAP DIRECTORY INSTALLATION
  3. ---------------------------------------------------------------
  4.  
  5. @ECHO OFF
  6.  
  7. :XCOPY32
  8. CLS
  9. echo.
  10. echo.
  11. echo.
  12. echo.  Installation of: "Snap Shot Files Only"
  13. echo.
  14. echo.
  15. echo  When you are ready to begin copying the contents of
  16. echo  drive D:\ (CD-ROM), press any key.
  17. echo.
  18. echo  NOTE: All files from drive D:\ will be copied directly
  19. echo  to your C:\MAME\SNAP directory.
  20. echo.
  21. echo  All PNG files must be in a folder called "SNAP" on CDROM.
  22. echo.
  23. echo  E.g D:\SNAP\GRIDLEE.PNG
  24. echo.
  25. echo.
  26. pause
  27. cls
  28. xcopy32 D:\SNAP C:\MAME\SNAP /E
  29. cls
  30. echo.
  31. echo.
  32. echo.
  33. CHOICE /C:1 /N /T:1,03 "   Arcade Machine will now RE-START"
  34. IF errorlevel==1 GOTO res
  35. :res 

Back


  1.  
  2. COPY OF 12.BAT, M.A.M.E SOUND SAMPLES DIRECTORY INSTALLATION
  3. --------------------------------------------------------------------------------------------
  4.  
  5. @ECHO OFF
  6.  
  7. :XCOPY32
  8. CLS
  9. echo.
  10. echo.
  11. echo.
  12. echo.  Installation of: "Sound Samples Only"
  13. echo.
  14. echo.
  15. echo  When you are ready to begin copying the contents of
  16. echo  drive D:\ (CDROM), press any key.
  17. echo.
  18. echo  NOTE: All files from drive D:\ will be copied directly
  19. echo  to your C:\MAME\Samples directory.
  20. echo.
  21. echo  All .ZIP files must be in a folder called "Samples" on CDROM.
  22. echo.
  23. echo  E.g D:\samples\DKONG.ZIP
  24. echo.
  25. echo.
  26. pause
  27. cls
  28. xcopy32 D:\Samples C:\MAME\Samples /E
  29. cls
  30. echo.
  31. echo.
  32. echo.
  33. CHOICE /C:1 /N /T:1,03 "   Arcade Machine will now RE-START"
  34. IF errorlevel==1 GOTO res
  35. :res

Back