feat:接入iverilog工具

- 将iverilog可以随着插件的下载而下载
- 用户输入自然语言就可以控制生成对应的VCD文件
This commit is contained in:
Roe-xin
2025-12-15 11:09:03 +08:00
parent 94225a3525
commit 22b9a0ed13
71 changed files with 2020 additions and 87 deletions

View 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