Remove CVS remnants for libveriuser files.

This commit is contained in:
Cary R 2012-08-16 10:48:23 -07:00
parent 3e9f831026
commit 0d61f7384d
37 changed files with 15 additions and 630 deletions

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_close.c,v 1.4 2003/06/17 16:55:07 steve Exp $"
#endif
# include <acc_user.h>
# include "priv.h"
@ -29,25 +26,3 @@ void acc_close(void)
fprintf(pli_trace, "acc_close()\n");
}
}
/*
* $Log: a_close.c,v $
* Revision 1.4 2003/06/17 16:55:07 steve
* 1) setlinebuf() for vpi_trace
* 2) Addes error checks for trace file opens
* 3) removes now extraneous flushes
* 4) fixes acc_next() bug
*
* Revision 1.3 2003/05/18 00:16:35 steve
* Add PLI_TRACE tracing of PLI1 modules.
*
* Add tf_isetdelay and friends, and add
* callback return values for acc_vcl support.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/05/23 03:46:42 steve
* Add the acc_user.h header file.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2003 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_compare_handles.c,v 1.3 2004/02/18 02:51:59 steve Exp $"
#endif
# include <vpi_user.h>
# include <acc_user.h>
@ -27,22 +24,3 @@ PLI_INT32 acc_compare_handles(handle handle1, handle handle2)
{
return handle1 == handle2;
}
/*
* $Log: a_compare_handles.c,v $
* Revision 1.3 2004/02/18 02:51:59 steve
* Fix type mismatches of various VPI functions.
*
* Revision 1.2 2003/08/26 16:26:02 steve
* ifdef idents correctly.
*
* Revision 1.1 2003/06/04 01:56:20 steve
* 1) Adds configure logic to clean up compiler warnings
* 2) adds acc_compare_handle, acc_fetch_range, acc_next_scope and
* tf_isetrealdelay, acc_handle_scope
* 3) makes acc_next reentrant
* 4) adds basic vpiWire type support
* 5) fills in some acc_object_of_type() and acc_fetch_{full}type()
* 6) add vpiLeftRange/RigthRange to signals
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_argc.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <vpi_user.h>
# include <veriuser.h>
@ -37,13 +34,3 @@ int acc_fetch_argc(void)
/* return argc */
return vpi_vlog_info.argc;
}
/*
* $Log: a_fetch_argc.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/11 15:19:12 steve
* Add acc_fetch_argc/argv/version (mruff)
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_argv.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <vpi_user.h>
# include <veriuser.h>
@ -37,13 +34,3 @@ char **acc_fetch_argv(void)
/* return argc */
return vpi_vlog_info.argv;
}
/*
* $Log: a_fetch_argv.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/11 15:19:12 steve
* Add acc_fetch_argc/argv/version (mruff)
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_dir.c,v 1.1 2003/10/10 02:57:45 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -42,12 +39,3 @@ PLI_INT32 acc_fetch_direction(handle obj)
return accInout;
}
/*
* $Log: a_fetch_dir.c,v $
* Revision 1.1 2003/10/10 02:57:45 steve
* Some PLI1 stubs.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_fullname.c,v 1.5 2003/05/29 02:21:45 steve Exp $"
#endif
#include <vpi_user.h>
#include <acc_user.h>
@ -41,27 +38,3 @@ char* acc_fetch_defname(handle object)
{
return __acc_newstring(vpi_get_str(vpiDefName, object));
}
/*
* $Log: a_fetch_fullname.c,v $
* Revision 1.5 2003/05/29 02:21:45 steve
* Implement acc_fetch_defname and its infrastructure in vvp.
*
* Revision 1.4 2003/03/13 05:07:46 steve
* Declaration warnings.
*
* Revision 1.3 2003/02/17 06:39:47 steve
* Add at least minimal implementations for several
* acc_ functions. Add support for standard ACC
* string handling.
*
* Add the _pli_types.h header file to carry the
* IEEE1364-2001 standard PLI type declarations.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/07 02:58:58 steve
* Add a bunch of acc/tf functions. (mruff)
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_location.c,v 1.1 2003/02/17 06:39:47 steve Exp $"
#endif
#include <acc_user.h>
#include <vpi_user.h>
@ -29,16 +26,3 @@ int acc_fetch_location(p_location loc, handle obj)
loc->filename = "<filename>";
return 1;
}
/*
* $Log: a_fetch_location.c,v $
* Revision 1.1 2003/02/17 06:39:47 steve
* Add at least minimal implementations for several
* acc_ functions. Add support for standard ACC
* string handling.
*
* Add the _pli_types.h header file to carry the
* IEEE1364-2001 standard PLI type declarations.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2003 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_range.c,v 1.2 2004/02/18 02:51:59 steve Exp $"
#endif
#include <vpi_user.h>
#include <acc_user.h>
@ -32,19 +29,3 @@ PLI_INT32 acc_fetch_range(handle object, int *msb, int *lsb)
*lsb = vpi_get(vpiRightRange, object);
return 0;
}
/*
* $Log: a_fetch_range.c,v $
* Revision 1.2 2004/02/18 02:51:59 steve
* Fix type mismatches of various VPI functions.
*
* Revision 1.1 2003/06/04 01:56:20 steve
* 1) Adds configure logic to clean up compiler warnings
* 2) adds acc_compare_handle, acc_fetch_range, acc_next_scope and
* tf_isetrealdelay, acc_handle_scope
* 3) makes acc_next reentrant
* 4) adds basic vpiWire type support
* 5) fills in some acc_object_of_type() and acc_fetch_{full}type()
* 6) add vpiLeftRange/RigthRange to signals
*
*/

View File

@ -16,10 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_fetch_time.c,v 1.1 2003/03/13 04:35:09 steve Exp $"
#endif
#include <vpi_user.h>
#include <acc_user.h>
@ -30,11 +26,3 @@ void acc_fetch_timescale_info(handle obj, p_timescale_info info)
info->precision = vpi_get(vpiTimePrecision, 0);
info->unit = vpi_get(vpiTimeUnit, obj);
}
/*
* $Log: a_fetch_time.c,v $
* Revision 1.1 2003/03/13 04:35:09 steve
* Add a bunch of new acc_ and tf_ functions.
*
*/

View File

@ -21,7 +21,6 @@
#include <vpi_user.h>
#include <acc_user.h>
const char* acc_fetch_type_str(PLI_INT32 type)
{
switch (type) {

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2003 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_by_name.c,v 1.2 2003/06/17 16:55:07 steve Exp $"
#endif
# include <acc_user.h>
# include <vpi_user.h>
@ -50,16 +47,3 @@ handle acc_handle_by_name(const char*obj_name, handle scope)
return res;
}
/*
* $Log: a_handle_by_name.c,v $
* Revision 1.2 2003/06/17 16:55:07 steve
* 1) setlinebuf() for vpi_trace
* 2) Addes error checks for trace file opens
* 3) removes now extraneous flushes
* 4) fixes acc_next() bug
*
* Revision 1.1 2003/05/24 03:02:04 steve
* Add implementation of acc_handle_by_name.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_hiconn.c,v 1.1 2003/10/10 02:57:45 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -42,12 +39,3 @@ handle acc_handle_hiconn(handle obj)
return 0;
}
/*
* $Log: a_handle_hiconn.c,v $
* Revision 1.1 2003/10/10 02:57:45 steve
* Some PLI1 stubs.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_object.c,v 1.2 2003/12/17 15:45:07 steve Exp $"
#endif
#include <vpi_user.h>
#include <acc_user.h>
@ -52,14 +49,3 @@ char* acc_set_scope(handle ref, ...)
return acc_fetch_fullname(ref);
}
/*
* $Log: a_handle_object.c,v $
* Revision 1.2 2003/12/17 15:45:07 steve
* Add acc_set_scope function.
*
* Revision 1.1 2003/03/13 04:35:09 steve
* Add a bunch of new acc_ and tf_ functions.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_parent.c,v 1.2 2003/06/04 01:56:20 steve Exp $"
#endif
#include <vpi_user.h>
#include <acc_user.h>
@ -34,25 +31,7 @@ handle acc_handle_parent(handle obj)
return scope;
}
handle acc_handle_scope(handle obj)
{
return vpi_handle(vpiScope, obj);
}
/*
* $Log: a_handle_parent.c,v $
* Revision 1.2 2003/06/04 01:56:20 steve
* 1) Adds configure logic to clean up compiler warnings
* 2) adds acc_compare_handle, acc_fetch_range, acc_next_scope and
* tf_isetrealdelay, acc_handle_scope
* 3) makes acc_next reentrant
* 4) adds basic vpiWire type support
* 5) fills in some acc_object_of_type() and acc_fetch_{full}type()
* 6) add vpiLeftRange/RigthRange to signals
*
* Revision 1.1 2003/03/13 04:35:09 steve
* Add a bunch of new acc_ and tf_ functions.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_simulated_net.c,v 1.1 2003/10/10 02:57:46 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -35,12 +32,3 @@ handle acc_handle_simulated_net(handle obj)
return obj;
}
/*
* $Log: a_handle_simulated_net.c,v $
* Revision 1.1 2003/10/10 02:57:46 steve
* Some PLI1 stubs.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_handle_tfarg.c,v 1.6 2004/10/04 01:10:56 steve Exp $"
#endif
#include <acc_user.h>
#include <vpi_user.h>
@ -55,30 +52,3 @@ handle acc_handle_tfinst(void)
{
return vpi_handle(vpiSysTfCall, 0);
}
/*
* $Log: a_handle_tfarg.c,v $
* Revision 1.6 2004/10/04 01:10:56 steve
* Clean up spurious trailing white space.
*
* Revision 1.5 2003/03/18 01:21:49 steve
* Fix warning about uninitialized variable.
*
* Revision 1.4 2003/03/14 04:58:50 steve
* Free the iterator when Im done.
*
* Revision 1.3 2003/02/17 06:39:47 steve
* Add at least minimal implementations for several
* acc_ functions. Add support for standard ACC
* string handling.
*
* Add the _pli_types.h header file to carry the
* IEEE1364-2001 standard PLI type declarations.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/02 19:03:58 steve
* Add acc_handle_tfarg and acc_next_topmode
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_initialize.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <acc_user.h>
@ -30,13 +27,3 @@ int acc_initialize()
return 1;
}
/*
* $Log: a_initialize.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/05/23 03:46:42 steve
* Add the acc_user.h header file.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_next_bit.c,v 1.1 2003/10/10 02:57:46 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -42,12 +39,3 @@ handle acc_next_bit(handle ref, handle bit)
return 0;
}
/*
* $Log: a_next_bit.c,v $
* Revision 1.1 2003/10/10 02:57:46 steve
* Some PLI1 stubs.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_next_port.c,v 1.1 2003/10/10 02:57:46 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -42,12 +39,3 @@ handle acc_next_port(handle ref, handle bit)
return 0;
}
/*
* $Log: a_next_port.c,v $
* Revision 1.1 2003/10/10 02:57:46 steve
* Some PLI1 stubs.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_next_topmod.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
#include <assert.h>
#include <vpi_user.h>
@ -46,13 +43,3 @@ handle acc_next_topmod(handle prev_topmod)
last = vpi_scan(mod_i);
return last;
}
/*
* $Log: a_next_topmod.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/02 19:03:58 steve
* Add acc_handle_tfarg and acc_next_topmode
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_product_version.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <vpi_user.h>
# include <acc_user.h>
@ -31,13 +28,3 @@ char *acc_product_version(void)
return info.version;
}
/*
* $Log: a_product_version.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/05/30 02:06:05 steve
* Implement acc_product_version.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: a_version.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <vpi_user.h>
# include <acc_user.h>
@ -31,13 +28,3 @@ char *acc_version(void)
return info.version;
}
/*
* $Log: a_version.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/11 15:19:12 steve
* Add acc_fetch_argc/argv/version (mruff)
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: asynch.c,v 1.3 2003/04/23 15:01:29 steve Exp $"
#endif
# include <veriuser.h>
@ -39,16 +36,3 @@ int tf_asynchoff(void)
async_misctf_enable = 0;
return 0;
}
/*
* $Log: asynch.c,v $
* Revision 1.3 2003/04/23 15:01:29 steve
* Add tf_synchronize and tf_multiply_long.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/04 01:40:03 steve
* Add asynchon and asynchoff
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: delay.c,v 1.3 2003/06/17 16:55:07 steve Exp $"
#endif
#include <veriuser.h>
#include <vpi_user.h>
@ -78,23 +75,3 @@ int tf_setdelay(PLI_INT32 delay)
{
return tf_isetdelay(delay, tf_getinstance());
}
/*
* $Log: delay.c,v $
* Revision 1.3 2003/06/17 16:55:07 steve
* 1) setlinebuf() for vpi_trace
* 2) Addes error checks for trace file opens
* 3) removes now extraneous flushes
* 4) fixes acc_next() bug
*
* Revision 1.2 2003/05/28 02:42:43 steve
* compiler warnings.
*
* Revision 1.1 2003/05/18 00:16:35 steve
* Add PLI_TRACE tracing of PLI1 modules.
*
* Add tf_isetdelay and friends, and add
* callback return values for acc_vcl support.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: exprinfo.c,v 1.1 2003/10/10 02:57:46 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -41,13 +38,3 @@ struct t_tfexprinfo* tf_exprinfo(PLI_INT32 a, struct t_tfexprinfo*ip)
}
return 0;
}
/*
* $Log: exprinfo.c,v $
* Revision 1.1 2003/10/10 02:57:46 steve
* Some PLI1 stubs.
*
*/

View File

@ -16,14 +16,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: finish.c,v 1.2 2002/08/12 01:35:02 steve Exp $"
#endif
# include <vpi_user.h>
# include <veriuser.h>
/*
* Implement tf_dofinish and tf_dostop using vpi functions.
*/
@ -38,14 +34,3 @@ int tf_dostop(void)
vpi_control(vpiStop, 0);
return 0;
}
/*
* $Log: finish.c,v $
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/05/19 05:21:00 steve
* Start the libveriuser library.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: getcstringp.c,v 1.3 2003/03/13 04:35:09 steve Exp $"
#endif
#include <veriuser.h>
#include <acc_user.h>
@ -31,16 +28,3 @@ char *tf_getcstringp(int n)
char*res = acc_fetch_tfarg_str(n);
return res;
}
/*
* $Log: getcstringp.c,v $
* Revision 1.3 2003/03/13 04:35:09 steve
* Add a bunch of new acc_ and tf_ functions.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/07 02:58:59 steve
* Add a bunch of acc/tf functions. (mruff)
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: getinstance.c,v 1.5 2005/09/20 18:34:01 steve Exp $"
#endif
#include <veriuser.h>
#include <vpi_user.h>
@ -30,25 +27,3 @@ PLI_BYTE8* tf_getinstance(void)
{
return (PLI_BYTE8 *)vpi_handle(vpiSysTfCall, 0 /* NULL */);
}
/*
* $Log: getinstance.c,v $
* Revision 1.5 2005/09/20 18:34:01 steve
* Clean up compiler warnings.
*
* Revision 1.4 2003/05/18 00:16:35 steve
* Add PLI_TRACE tracing of PLI1 modules.
*
* Add tf_isetdelay and friends, and add
* callback return values for acc_vcl support.
*
* Revision 1.3 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.2 2002/06/03 21:52:59 steve
* Fix return type of tf_getinstance.
*
* Revision 1.1 2002/06/02 18:54:59 steve
* Add tf_getinstance function.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: io_print.c,v 1.4 2002/12/19 21:37:04 steve Exp $"
#endif
# include <vpi_user.h>
# include <veriuser.h>
@ -70,22 +67,3 @@ PLI_INT32 tf_message(PLI_INT32 level, char*facility,
vpi_printf("\n");
return 0;
}
/*
* $Log: io_print.c,v $
* Revision 1.4 2002/12/19 21:37:04 steve
* Add tf_message, tf_get/setworkarea, and
* ty_typep functions, along with defines
* related to these functions.
*
* Revision 1.3 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.2 2002/05/30 02:10:08 steve
* Add tf_error and tf_warning from mruff
*
* Revision 1.1 2002/05/23 03:35:42 steve
* Add the io_printf function to libveriuser.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: math.c,v 1.3 2003/06/13 19:23:42 steve Exp $"
#endif
# include <string.h>
# include <stdlib.h>
@ -54,23 +51,3 @@ void tf_long_to_real(PLI_INT32 low, PLI_INT32 high, double *real)
a = (a << 32) | low;
*real = (double)a;
}
/*
* $Log: math.c,v $
* Revision 1.3 2003/06/13 19:23:42 steve
* Add a bunch more PLI1 routines.
*
* Revision 1.2 2003/06/04 01:56:20 steve
* 1) Adds configure logic to clean up compiler warnings
* 2) adds acc_compare_handle, acc_fetch_range, acc_next_scope and
* tf_isetrealdelay, acc_handle_scope
* 3) makes acc_next reentrant
* 4) adds basic vpiWire type support
* 5) fills in some acc_object_of_type() and acc_fetch_{full}type()
* 6) add vpiLeftRange/RigthRange to signals
*
* Revision 1.1 2003/04/23 15:01:29 steve
* Add tf_synchronize and tf_multiply_long.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: mc_scan_plusargs.c,v 1.3 2002/08/12 01:35:02 steve Exp $"
#endif
# include <string.h>
# include <vpi_user.h>
@ -66,16 +63,3 @@ char *mc_scan_plusargs(char *plusarg)
/* didn't find it yet */
return (char *)0;
}
/*
* $Log: mc_scan_plusargs.c,v $
* Revision 1.3 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.2 2002/05/24 21:46:21 steve
* Only match plusargs.
*
* Revision 1.1 2002/05/24 20:29:07 steve
* Implement mc_scan_plusargs.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: nodeinfo.c,v 1.1 2003/10/10 02:57:46 steve Exp $"
#endif
# include <assert.h>
# include <ctype.h>
@ -41,13 +38,3 @@ struct t_tfnoeinfo* tf_nodeinfo(PLI_INT32 a, struct t_tfnodeinfo*ip)
}
return 0;
}
/*
* $Log: nodeinfo.c,v $
* Revision 1.1 2003/10/10 02:57:46 steve
* Some PLI1 stubs.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: nump.c,v 1.3 2003/05/28 03:38:05 steve Exp $"
#endif
#include <vpi_user.h>
#include <stdio.h>
@ -46,16 +43,3 @@ int tf_nump(void)
vpiHandle sys_h = vpi_handle(vpiSysTfCall, 0 /* NULL */);
return tf_inump(sys_h);
}
/*
* $Log: nump.c,v $
* Revision 1.3 2003/05/28 03:38:05 steve
* Implement tf_inump
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/05/30 02:12:17 steve
* Add tf_nump from mruff.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: priv.c,v 1.3 2003/05/18 00:16:35 steve Exp $"
#endif
# include "priv.h"
# include <string.h>
@ -55,25 +52,3 @@ char* __acc_newstring(const char*txt)
return res;
}
/*
* $Log: priv.c,v $
* Revision 1.3 2003/05/18 00:16:35 steve
* Add PLI_TRACE tracing of PLI1 modules.
*
* Add tf_isetdelay and friends, and add
* callback return values for acc_vcl support.
*
* Revision 1.2 2003/03/13 05:07:46 steve
* Declaration warnings.
*
* Revision 1.1 2003/02/17 06:39:47 steve
* Add at least minimal implementations for several
* acc_ functions. Add support for standard ACC
* string handling.
*
* Add the _pli_types.h header file to carry the
* IEEE1364-2001 standard PLI type declarations.
*
*/

View File

@ -1,4 +1,4 @@
/* vi:sw=6
/*
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.com)
*
* This source code is free software; you can redistribute it
@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: putlongp.c,v 1.4 2004/09/10 23:13:05 steve Exp $"
#endif
#include <stdio.h>
#include <assert.h>
@ -62,19 +59,3 @@ void tf_putlongp(int n, int lowvalue, int highvalue)
vpi_free_object(sys_i);
}
/*
* $Log: putlongp.c,v $
* Revision 1.4 2004/09/10 23:13:05 steve
* Compile cleanup of C code.
*
* Revision 1.3 2003/03/15 05:42:39 steve
* free argument iterators.
*
* Revision 1.2 2002/08/12 01:35:02 steve
* conditional ident string using autoconfig.
*
* Revision 1.1 2002/06/07 16:21:13 steve
* Add tf_putlongp and tf_putp.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: spname.c,v 1.4 2003/06/17 16:55:08 steve Exp $"
#endif
#include <assert.h>
#include <vpi_user.h>
@ -51,29 +48,3 @@ char *tf_mipname(void)
{
return tf_imipname(vpi_handle(vpiSysTfCall,0));
}
/*
* $Log: spname.c,v $
* Revision 1.4 2003/06/17 16:55:08 steve
* 1) setlinebuf() for vpi_trace
* 2) Addes error checks for trace file opens
* 3) removes now extraneous flushes
* 4) fixes acc_next() bug
*
* Revision 1.3 2003/05/29 03:46:21 steve
* Add tf_getp/putp support for integers
* and real valued arguments.
*
* Add tf_mipname function.
*
* Revision 1.2 2003/05/18 00:16:35 steve
* Add PLI_TRACE tracing of PLI1 modules.
*
* Add tf_isetdelay and friends, and add
* callback return values for acc_vcl support.
*
* Revision 1.1 2003/03/13 04:35:09 steve
* Add a bunch of new acc_ and tf_ functions.
*
*/

View File

@ -16,9 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: typep.c,v 1.2 2003/03/13 05:07:46 steve Exp $"
#endif
#include <assert.h>
#include <veriuser.h>