⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 veriuser.c

📁 vcs tutorial Lab2-PLI verygood
💻 C
字号:
/* $Author: chas $ *//* $Date: 1995/01/11 00:51:12 $ *//* $Source: /net/cruncher/home3/verilog/VDH/Repository/source/veriuser.c,v $ *//* $Revision: 46.5 $ *//* $State: Exp $ *//* $Locker:  $ *//* * |-----------------------------------------------------------------------| * |                                                                       | * |   Copyright Cadence Design Systems, Inc. 1985, 1988.                  | * |     All Rights Reserved.       Licensed Software.                     | * |                                                                       | * |                                                                       | * | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF CADENCE DESIGN SYSTEMS | * | The copyright notice above does not evidence any actual or intended   | * | publication of such source code.                                      | * |                                                                       | * |-----------------------------------------------------------------------| *//* * |-------------------------------------------------------------| * |                                                             | * | PROPRIETARY INFORMATION, PROPERTY OF CADENCE DESIGN SYSTEMS | * |                                                             | * |-------------------------------------------------------------| *//******************************************************************************   This is the `veriuser.c' file.  For more information about the contents*   of this file, please see `veriuser.doc'.*****************************************************************************/#include "veriuser.h"#include "vxl_veriuser.h"extern int and_call(); char *veriuser_version_str = "";int (*endofcompile_routines[])() = {    /*** my_eoc_routine, ***/    0 /*** final entry must be 0 ***/};bool err_intercept(level,facility,code)int level; char *facility; char *code;{ return(true); }s_tfcell veriusertfs[] ={    /*** Template for an entry:    { usertask|userfunction, data,      checktf(), sizetf(), calltf(), misctf(),      "$tfname", forwref?, Vtool?, ErrMsg? },    Example:    { usertask, 0, my_check, 0, my_func, my_misctf, "$my_task" },    ***/    /*** add user entries here ***/    { usertask, 0, 0, 0, and_call, 0, "$and"},    {0} /*** final entry must be 0 ***/};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -