📄 vpi_user_xl.c
字号:
/**********************************************************************
* Example vpi_user.c file
*
* vpi_user.c file to register PLI applications using the VPI library.
*
* For the book, "The Verilog PLI Handbook" by Stuart Sutherland
* Book copyright 1999, Kluwer Academic Publishers, Norwell, MA, USA
* Contact: www.wkap.il
* Example copyright 1998, Sutherland HDL Inc, Portland, Oregon, USA
* Contact: www.sutherland.com or (503) 692-0898
*********************************************************************/
#include "vpi_user.h"
#include "vpi_user_cds.h"
/* prototypes of the PLI application routines */
extern void PLIbook_pow_register();
void (*vlog_startup_routines[])() =
{
/*** add user entries here ***/
PLIbook_pow_register,
0 /*** final entry must be 0 ***/
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -