?? decoder3by8.h
字號:
#include "systemc.h"
SC_MODULE(decoder3by8)
{
//sc_in<sc_uint<6> > select3;
sc_in<sc_uint<3> > select3;
//sc_out<sc_uint<8> > row8;
sc_out<sc_uint<8> > row8;
void prc_decoder3by8();
SC_CTOR(decoder3by8)
{
SC_METHOD(prc_decoder3by8);
sensitive<<select3;
}
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -