Support monitor of real variables.

This commit is contained in:
steve 2003-02-10 05:20:48 +00:00
parent dcbb8d0780
commit 32088821c0
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ifdef HAVE_CVS_IDENT #ifdef HAVE_CVS_IDENT
#ident "$Id: sys_display.c,v 1.52 2003/02/06 17:40:02 steve Exp $" #ident "$Id: sys_display.c,v 1.53 2003/02/10 05:20:48 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -1112,6 +1112,7 @@ static int sys_monitor_calltf(char*name)
case vpiNet: case vpiNet:
case vpiReg: case vpiReg:
case vpiIntegerVar: case vpiIntegerVar:
case vpiRealVar:
/* Monitoring reg and net values involves setting /* Monitoring reg and net values involves setting
a callback for value changes. pass the storage a callback for value changes. pass the storage
pointer for the callback itself as user_data so pointer for the callback itself as user_data so
@ -1699,6 +1700,9 @@ void sys_display_register()
/* /*
* $Log: sys_display.c,v $ * $Log: sys_display.c,v $
* Revision 1.53 2003/02/10 05:20:48 steve
* Support monitor of real variables.
*
* Revision 1.52 2003/02/06 17:40:02 steve * Revision 1.52 2003/02/06 17:40:02 steve
* Format real values as time. * Format real values as time.
* *