# systemcrun **Repository Path**: DY-Young/systemcrun ## Basic Information - **Project Name**: systemcrun - **Description**: 基于SystemC项目运行框架 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-25 - **Last Updated**: 2024-07-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 在期望运行在SYSTEMC上的项目顶层定义如下Makefile ```makefile # Makefile run: git clone https://gitee.com/DY-Young/systemcrun.git run simv: | run simv.run: | simv make simv.run -C run ``` 此外,必须在目标顶层目录下定义filelist.mk将需要编译的源文件和头文件列出 ```makefile # filelist.mk INCS += include SRCS += main.cpp ... ``` 编译仿真可执行文件使用 make simv 运行可执行文件使用 make simv.run