?? dhvvbitc.nc
字號:
/**
* DHV Virtual Bits Check Configuration
*
* Define interfaces and components.
*
* @author Thanh Dang
* @author Seungweon Park
*
* @modified 1/3/2009 Added meaningful documentation.
* @modified 8/28/2008 Defined DHV modules.
**/
configuration DhvVBitC{
provides interface DhvDecision;
uses interface DhvSend as VBitSend;
uses interface DhvReceive as VBitReceive;
uses interface DhvStateLogic as VBitLogic;
uses interface DhvLogic as VectorLogic;
uses interface DhvHelp;
}
implementation{
components DhvVBitP;
DhvDecision = DhvVBitP;
VBitSend = DhvVBitP;
VBitReceive = DhvVBitP;
VBitLogic = DhvVBitP;
VectorLogic = DhvVBitP;
DhvHelp = DhvVBitP;
components RandomC;
DhvVBitP.Random -> RandomC;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -