feat:接入iverilog工具
- 将iverilog可以随着插件的下载而下载 - 用户输入自然语言就可以控制生成对应的VCD文件
This commit is contained in:
20
tools/iverilog/copy-iverilog.bat
Normal file
20
tools/iverilog/copy-iverilog.bat
Normal file
@ -0,0 +1,20 @@
|
||||
@echo off
|
||||
chcp 65001 >nul
|
||||
echo =====================================
|
||||
echo Iverilog 文件复制脚本
|
||||
echo =====================================
|
||||
echo.
|
||||
|
||||
REM 检查 PowerShell 是否可用
|
||||
where powershell >nul 2>&1
|
||||
if %errorlevel% neq 0 (
|
||||
echo 错误: 未找到 PowerShell
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
REM 运行 PowerShell 脚本
|
||||
powershell -ExecutionPolicy Bypass -File "%~dp0copy-iverilog.ps1"
|
||||
|
||||
echo.
|
||||
pause
|
||||
Reference in New Issue
Block a user