Add missing vpi entry points.
This commit is contained in:
parent
9074999666
commit
0579ae08cd
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#ifdef HAVE_CVS_IDENT
|
||||
#ident "$Id: vpi_priv.cc,v 1.27 2003/01/10 03:06:32 steve Exp $"
|
||||
#ident "$Id: vpi_priv.cc,v 1.28 2003/01/10 19:02:21 steve Exp $"
|
||||
#endif
|
||||
|
||||
# include "vpi_priv.h"
|
||||
|
|
@ -383,8 +383,19 @@ extern "C" void vpi_sim_control(int operation, ...)
|
|||
va_end(ap);
|
||||
}
|
||||
|
||||
extern "C" void vpi_control(int operation, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, operation);
|
||||
vpi_sim_vcontrol(operation, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
/*
|
||||
* $Log: vpi_priv.cc,v $
|
||||
* Revision 1.28 2003/01/10 19:02:21 steve
|
||||
* Add missing vpi entry points.
|
||||
*
|
||||
* Revision 1.27 2003/01/10 03:06:32 steve
|
||||
* Remove vpithunk, and move libvpi to vvp directory.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
EXPORTS
|
||||
|
||||
vpi_chk_error
|
||||
vpi_control
|
||||
vpi_free_object
|
||||
vpi_get
|
||||
vpi_get_str
|
||||
|
|
@ -17,11 +18,14 @@ vpi_mcd_fgetc
|
|||
vpi_mcd_fputc
|
||||
vpi_mcd_name
|
||||
vpi_mcd_open
|
||||
vpi_mcd_open_x
|
||||
vpi_mcd_printf
|
||||
vpi_printf
|
||||
vpi_put_userdata
|
||||
vpi_put_value
|
||||
vpi_register_cb
|
||||
vpi_register_systf
|
||||
vpi_remove_cb
|
||||
vpi_scan
|
||||
vpi_sim_control
|
||||
vpi_sim_vcontrol
|
||||
|
|
|
|||
Loading…
Reference in New Issue