25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
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.