25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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.