25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @echo off
- setlocal
-
- set "VICE_EXE=C:\Program Files\GTK3VICE-3.10-win64\bin\x64sc.exe"
- set "DISK=kernal_os.d64"
-
- if not exist "%VICE_EXE%" (
- echo VICE x64sc was not found at:
- echo %VICE_EXE%
- exit /b 1
- )
-
- call build_all.bat
- if errorlevel 1 exit /b 1
-
- "%VICE_EXE%" -autostart "%CD%\%DISK%"
|