Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
430B

  1. @echo off
  2. setlocal
  3. set "VICE_EXE=C:\Program Files\GTK3VICE-3.10-win64\bin\x64sc.exe"
  4. set "MONLOG=%~dp0..\vice-monitor.log"
  5. if not exist "%VICE_EXE%" (
  6. echo x64sc.exe not found at "%VICE_EXE%"
  7. exit /b 1
  8. )
  9. call "%~dp0..\build.bat"
  10. if errorlevel 1 exit /b 1
  11. "%VICE_EXE%" ^
  12. -autostart "%~dp0..\c64os.prg" ^
  13. -autostart-warp ^
  14. -nativemonitor ^
  15. -keepmonopen ^
  16. -refreshonbreak ^
  17. -monlog ^
  18. -monlogname "%MONLOG%"

Powered by TurnKey Linux.