15 lines
171 B
Batchfile
15 lines
171 B
Batchfile
@ECHO OFF
|
|
:: 初始化区
|
|
chcp 65001 >nul
|
|
title PinMAP转PinList -By:LeeQwQ
|
|
mode con cols=80 lines=50
|
|
color 0B
|
|
cls
|
|
|
|
cd /d "%~dp0Code\src"
|
|
python main.py
|
|
|
|
echo.
|
|
pause
|
|
EXIT
|