?? veriuser.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 + -