📄 arbitrator.h
字号:
#ifndef arbitrator_H#define arbitrator_H//FILE: arbitrator.h (systemc)//# vim600:set sw=2 tw=0 fdm=marker:// Submodule class declarations// Module definitionSC_MODULE(arbitrator) { // Ports sc_in<bool> request_ip; sc_out<bool> grant_op; sc_in_clk clock_ip; arbitrator(sc_module_name nm,sc_clock& clock);//Constructor // Processe declarations void arbitrator_thread(); // Private dataprivate: sc_clock& m_clock;};#endif//Portions COPYRIGHT (C) 2004 Eklectic Ally, Inc.------------------{{{//// Permission granted for anybody to use this template provided this //// acknowledgement of Eklectic Ally, Inc. remains. ////-----------------------------------------------------------------}}}////END $Id: arbitrator.h,v 1.2 2004/04/15 17:45:26 dcblack Exp $
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -