?? output.h
字號:
/************************************************************************
* file name: output.h
* description: header file of output module.
*
* modification history
* --------------------
* 2003-5-31 20:06:24, created by zhuwei
*/
#ifndef _OUTPUT_H
#define _OUTPUT_H
/* includes----------------------------------------------------------- */
#include "systemc.h"
/* defines------------------------------------------------------------ */
/* typedefs----------------------------------------------------------- */
SC_MODULE(output)
{
sc_out< sc_bit > dout[3];
sc_in<bool> clk;
void do_output();
//int count;
SC_CTOR(output)//: count(0)
{
SC_THREAD(do_output);
sensitive_pos << clk;
}
};
/* externs------------------------------------------------------------ */
/* globals------------------------------------------------------------ */
/* forward declarations----------------------------------------------- */
#endif /* _OUTPUT_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -