⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_fixture.h

📁 这个是systemc的一个小的程序
💻 H
字号:
/************************************************************************    Test fixture header file************************************************************************/#include "systemc.h"SC_MODULE( test_fixture) {    sc_out<bool>        reset;    sc_in<bool>         clk;     sc_out<bool>        start;    void do_command();    //Counstructor    SC_CTOR( test_fixture ) {        SC_CTHREAD( do_command, clk.pos() );   //Declare do_command as SC_METHOD    }};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -