SystemC学习 Apr 30, 2023 Lishengxie 视频教程 教程链接 创建模块 #include <systemc.h> // SC_MODULE声明模块,and2对应模块名 SC_MODULE(and2){ // sc_in声明输入端口,DT对应端口变量数据类型 sc_in<DT> a; sc_in<DT> b; // 声明时钟信号 …