Add missing Log and Ident strings.

This commit is contained in:
steve 2002-08-11 23:47:04 +00:00
parent d24cd015b6
commit aca1dcf848
28 changed files with 245 additions and 26 deletions

View File

@ -15,9 +15,10 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* $Id: dosify.c,v 1.1 2001/08/03 17:06:47 steve Exp $
*/ */
#if !defined(WINNT)
#ident "$Id: dosify.c,v 1.2 2002/08/11 23:47:04 steve Exp $"
#endif
/* /*
* This is a simple program to make a dosified copy of the * This is a simple program to make a dosified copy of the
@ -68,6 +69,9 @@ int main(int argc, char*argv[])
/* /*
* $Log: dosify.c,v $ * $Log: dosify.c,v $
* Revision 1.2 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.1 2001/08/03 17:06:47 steve * Revision 1.1 2001/08/03 17:06:47 steve
* Add install of examples for Windows. * Add install of examples for Windows.
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: substit.c,v 1.2 2002/06/25 01:33:01 steve Exp $" #if !defined(WINNT)
#ident "$Id: substit.c,v 1.3 2002/08/11 23:47:04 steve Exp $"
#endif
# include <string.h> # include <string.h>
# include <stdlib.h> # include <stdlib.h>
@ -94,6 +96,9 @@ char* substitutions(const char*str)
/* /*
* $Log: substit.c,v $ * $Log: substit.c,v $
* Revision 1.3 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.2 2002/06/25 01:33:01 steve * Revision 1.2 2002/06/25 01:33:01 steve
* include malloc.h only when available. * include malloc.h only when available.
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: hello_vpi.c,v 1.1 2002/04/18 03:25:16 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: hello_vpi.c,v 1.2 2002/08/11 23:47:04 steve Exp $"
#endif
/* /*
* This file contains an example VPI module to demonstrate the tools * This file contains an example VPI module to demonstrate the tools
@ -60,6 +62,9 @@ void (*vlog_startup_routines[])() = {
}; };
/* /*
* $Log: hello_vpi.c,v $ * $Log: hello_vpi.c,v $
* Revision 1.2 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.1 2002/04/18 03:25:16 steve * Revision 1.1 2002/04/18 03:25:16 steve
* More examples. * More examples.
* *

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
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: net_modulo.cc,v 1.3 2001/10/28 01:14:53 steve Exp $" #ident "$Id: net_modulo.cc,v 1.4 2002/08/11 23:47:04 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -104,4 +104,9 @@ const Link& NetModulo::pin_DataB(unsigned idx) const
return pin(idx+width_r_+width_a_); return pin(idx+width_r_+width_a_);
} }
/*
* $Log: net_modulo.cc,v $
* Revision 1.4 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: d-generic-edif.c,v 1.7 2001/09/16 01:48:16 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: d-generic-edif.c,v 1.8 2002/08/11 23:47:04 steve Exp $"
#endif
# include "device.h" # include "device.h"
# include "fpga_priv.h" # include "fpga_priv.h"
@ -398,6 +400,9 @@ const struct device_s d_generic_edif = {
/* /*
* $Log: d-generic-edif.c,v $ * $Log: d-generic-edif.c,v $
* Revision 1.8 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.7 2001/09/16 01:48:16 steve * Revision 1.7 2001/09/16 01:48:16 steve
* Suppor the PAD attribute on signals. * Suppor the PAD attribute on signals.
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: d-generic.c,v 1.9 2001/09/16 01:48:16 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: d-generic.c,v 1.10 2002/08/11 23:47:04 steve Exp $"
#endif
# include "device.h" # include "device.h"
# include "fpga_priv.h" # include "fpga_priv.h"
@ -508,6 +510,9 @@ const struct device_s d_generic = {
/* /*
* $Log: d-generic.c,v $ * $Log: d-generic.c,v $
* Revision 1.10 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.9 2001/09/16 01:48:16 steve * Revision 1.9 2001/09/16 01:48:16 steve
* Suppor the PAD attribute on signals. * Suppor the PAD attribute on signals.
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: d-virtex.c,v 1.11 2001/10/11 00:12:28 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: d-virtex.c,v 1.12 2002/08/11 23:47:04 steve Exp $"
#endif
# include "device.h" # include "device.h"
# include "fpga_priv.h" # include "fpga_priv.h"
@ -1062,6 +1064,9 @@ const struct device_s d_virtex_edif = {
/* /*
* $Log: d-virtex.c,v $ * $Log: d-virtex.c,v $
* Revision 1.12 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.11 2001/10/11 00:12:28 steve * Revision 1.11 2001/10/11 00:12:28 steve
* Generate BUF devices for bufz logic. * Generate BUF devices for bufz logic.
* *

View File

@ -18,7 +18,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: device.h,v 1.7 2001/09/16 01:48:16 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: device.h,v 1.8 2002/08/11 23:47:04 steve Exp $"
#endif
# include <ivl_target.h> # include <ivl_target.h>
@ -66,6 +68,9 @@ extern device_t device_from_arch(const char*arch);
/* /*
* $Log: device.h,v $ * $Log: device.h,v $
* Revision 1.8 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.7 2001/09/16 01:48:16 steve * Revision 1.7 2001/09/16 01:48:16 steve
* Suppor the PAD attribute on signals. * Suppor the PAD attribute on signals.
* *

View File

@ -18,7 +18,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: fpga_priv.h,v 1.4 2001/09/06 04:28:40 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: fpga_priv.h,v 1.5 2002/08/11 23:47:04 steve Exp $"
#endif
# include <stdio.h> # include <stdio.h>
# include "device.h" # include "device.h"
@ -81,6 +83,9 @@ extern unsigned edif_uref;
/* /*
* $Log: fpga_priv.h,v $ * $Log: fpga_priv.h,v $
* Revision 1.5 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.4 2001/09/06 04:28:40 steve * Revision 1.4 2001/09/06 04:28:40 steve
* Separate the virtex and generic-edif code generators. * Separate the virtex and generic-edif code generators.
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: gates.c,v 1.7 2001/09/09 22:23:28 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: gates.c,v 1.8 2002/08/11 23:47:04 steve Exp $"
#endif
# include <ivl_target.h> # include <ivl_target.h>
# include "fpga_priv.h" # include "fpga_priv.h"
@ -98,6 +100,9 @@ int show_scope_gates(ivl_scope_t net, void*x)
/* /*
* $Log: gates.c,v $ * $Log: gates.c,v $
* Revision 1.8 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.7 2001/09/09 22:23:28 steve * Revision 1.7 2001/09/09 22:23:28 steve
* Virtex support for mux devices and adders * Virtex support for mux devices and adders
* with carry chains. Also, make Virtex specific * with carry chains. Also, make Virtex specific

View File

@ -16,8 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: mangle.c,v 1.4 2001/09/15 18:27:04 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: mangle.c,v 1.5 2002/08/11 23:47:04 steve Exp $"
#endif
# include "fpga_priv.h" # include "fpga_priv.h"
# include <string.h> # include <string.h>
@ -97,6 +98,9 @@ const char* xnf_mangle_nexus_name(ivl_nexus_t net)
/* /*
* $Log: mangle.c,v $ * $Log: mangle.c,v $
* Revision 1.5 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.4 2001/09/15 18:27:04 steve * Revision 1.4 2001/09/15 18:27:04 steve
* Make configure detect malloc.h * Make configure detect malloc.h
* *

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: tables.c,v 1.2 2001/09/06 04:28:40 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: tables.c,v 1.3 2002/08/11 23:47:04 steve Exp $"
#endif
# include "fpga_priv.h" # include "fpga_priv.h"
# include <string.h> # include <string.h>
@ -54,6 +56,9 @@ device_t device_from_arch(const char*arch)
/* /*
* $Log: tables.c,v $ * $Log: tables.c,v $
* Revision 1.3 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.2 2001/09/06 04:28:40 steve * Revision 1.2 2001/09/06 04:28:40 steve
* Separate the virtex and generic-edif code generators. * Separate the virtex and generic-edif code generators.
* *

View File

@ -16,8 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: enables.c,v 1.4 2001/07/25 03:10:50 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: enables.c,v 1.5 2002/08/11 23:47:04 steve Exp $"
#endif
# include "config.h" # include "config.h"
# include "ivl_target.h" # include "ivl_target.h"
@ -79,6 +80,9 @@ void absorb_pad_enables(void)
/* /*
* $Log: enables.c,v $ * $Log: enables.c,v $
* Revision 1.5 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.4 2001/07/25 03:10:50 steve * Revision 1.4 2001/07/25 03:10:50 steve
* Create a config.h.in file to hold all the config * Create a config.h.in file to hold all the config
* junk, and support gcc 3.0. (Stephan Boettcher) * junk, and support gcc 3.0. (Stephan Boettcher)

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
*/ */
#if !defined(WINNT) #if !defined(WINNT)
#ident "$Id: draw_mux.c,v 1.2 2002/07/16 03:15:11 steve Exp $" #ident "$Id: draw_mux.c,v 1.3 2002/08/11 23:47:04 steve Exp $"
#endif #endif
# include "vvp_priv.h" # include "vvp_priv.h"
@ -170,3 +170,9 @@ void draw_lpm_mux(ivl_lpm_t net)
} }
/*
* $Log: draw_mux.c,v $
* Revision 1.3 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

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
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vvp.c,v 1.13 2001/10/19 21:53:24 steve Exp $" #ident "$Id: vvp.c,v 1.14 2002/08/11 23:47:04 steve Exp $"
#endif #endif
/* /*
@ -103,5 +103,8 @@ int target_design(ivl_design_t des)
} }
/* /*
* $Log: vvp.c,v $
* Revision 1.14 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/ */

View File

@ -19,6 +19,9 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE. * DEALINGS IN THE SOFTWARE.
*/ */
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: lxt_write.c,v 1.2 2002/08/11 23:47:04 steve Exp $"
#endif
#include "lxt_write.h" #include "lxt_write.h"
@ -1526,3 +1529,10 @@ if(!(s->flags&(LT_SYM_F_DOUBLE|LT_SYM_F_STRING)))
return(rc); return(rc);
} }
/*
* $Log: lxt_write.c,v $
* Revision 1.2 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -19,6 +19,9 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE. * DEALINGS IN THE SOFTWARE.
*/ */
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: lxt_write.h,v 1.2 2002/08/11 23:47:04 steve Exp $"
#endif
#ifndef DEFS_LXT_H #ifndef DEFS_LXT_H
#define DEFS_LXT_H #define DEFS_LXT_H
@ -154,3 +157,10 @@ int lt_emit_value_string(struct lt_trace *lt, struct lt_symbol *s, unsigned i
int lt_emit_value_bit_string(struct lt_trace *lt, struct lt_symbol *s, unsigned int row, char *value); int lt_emit_value_bit_string(struct lt_trace *lt, struct lt_symbol *s, unsigned int row, char *value);
#endif #endif
/*
* $Log: lxt_write.h,v $
* Revision 1.2 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -10,6 +10,9 @@
* *
* Change the function prototypes to use ANSI/ISO C syntax. * Change the function prototypes to use ANSI/ISO C syntax.
*/ */
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: mt19937int.c,v 1.2 2002/08/11 23:47:04 steve Exp $"
#endif
/* A C-program for MT19937: Integer version (1998/4/6) */ /* A C-program for MT19937: Integer version (1998/4/6) */
/* genrand() generates one pseudorandom unsigned integer (32bit) */ /* genrand() generates one pseudorandom unsigned integer (32bit) */
@ -113,3 +116,9 @@ genrand()
return y; return y;
} }
/*
* $Log: mt19937int.c,v $
* Revision 1.2 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -16,7 +16,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ident "$Id: sys_plusargs.c,v 1.2 2002/08/10 17:00:31 steve Exp $" #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: sys_plusargs.c,v 1.3 2002/08/11 23:47:04 steve Exp $"
#endif
# include <vpi_user.h> # include <vpi_user.h>
# include <string.h> # include <string.h>
@ -327,6 +329,9 @@ void sys_plusargs_register()
/* /*
* $Log: sys_plusargs.c,v $ * $Log: sys_plusargs.c,v $
* Revision 1.3 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
* Revision 1.2 2002/08/10 17:00:31 steve * Revision 1.2 2002/08/10 17:00:31 steve
* Allow vpiIntegerVar as parameter to $value$plusarg * Allow vpiIntegerVar as parameter to $value$plusarg
* *

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
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vpi_mcd.c,v 1.4 2001/07/22 18:19:19 steve Exp $" #ident "$Id: vpi_mcd.c,v 1.5 2002/08/11 23:47:04 steve Exp $"
#endif #endif
# include "vpi_priv.h" # include "vpi_priv.h"
@ -145,3 +145,10 @@ int vpi_mcd_fgetc(unsigned int mcd)
} }
return 0; return 0;
} }
/*
* $Log: vpi_mcd.c,v $
* Revision 1.5 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

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
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vpi_vlog_info.c,v 1.1 2001/03/14 19:27:44 steve Exp $" #ident "$Id: vpi_vlog_info.c,v 1.2 2002/08/11 23:47:05 steve Exp $"
#endif #endif
#include <vpi_priv.h> #include <vpi_priv.h>
@ -79,3 +79,10 @@ vpip_set_vlog_info(int argc, char** argv)
vpip_argc = argc; vpip_argc = argc;
vpip_argv = argv; vpip_argv = argv;
} }
/*
* $Log: vpi_vlog_info.c,v $
* Revision 1.2 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -1,3 +1,25 @@
/*
* Copyright (c) 2001-2002 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vpithunk.c,v 1.5 2002/08/11 23:47:04 steve Exp $"
#endif
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
#include "vpi_user.h" #include "vpi_user.h"
@ -207,3 +229,10 @@ extern int vpi_chk_error(p_vpi_error_info info)
{ {
VPIT_CALL(vpi_chk_error, 0, (info)); VPIT_CALL(vpi_chk_error, 0, (info));
} }
/*
* $Log: vpithunk.c,v $
* Revision 1.5 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -1,6 +1,28 @@
#ifndef _VPI_THUNK_H_ #ifndef _VPI_THUNK_H_
#define _VPI_THUNK_H_ 1 #define _VPI_THUNK_H_ 1
/*
* Copyright (c) 2001-2002 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vpithunk.h,v 1.3 2002/08/11 23:47:04 steve Exp $"
#endif
/* These functions are actually defined in lieu of the vpi functions /* These functions are actually defined in lieu of the vpi functions
by the simulator. These prototypes should'nt go into vpi_user.h, by the simulator. These prototypes should'nt go into vpi_user.h,
because we don't want the users to be seeing this stuff. They because we don't want the users to be seeing this stuff. They
@ -50,3 +72,10 @@ typedef struct {
DLLEXPORT int vpi_register_sim(p_vpi_thunk tp); DLLEXPORT int vpi_register_sim(p_vpi_thunk tp);
#endif #endif
/*
* $Log: vpithunk.h,v $
* Revision 1.3 2002/08/11 23:47:04 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -1,3 +1,7 @@
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vvm_vpi.cc,v 1.2 2002/08/11 23:47:05 steve Exp $"
#endif
#include <stdarg.h> #include <stdarg.h>
#include "vpi_user.h" #include "vpi_user.h"
#include "vpithunk.h" #include "vpithunk.h"
@ -31,3 +35,10 @@ void vvm_vpi_init()
vvmt.vpi_free_object= vpi_free_object; vvmt.vpi_free_object= vpi_free_object;
vvmt.vpi_get_vlog_info = vpi_get_vlog_info; vvmt.vpi_get_vlog_info = vpi_get_vlog_info;
} }
/*
* $Log: vvm_vpi.cc,v $
* Revision 1.2 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/

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
*/ */
#if !defined(WINNT) #if !defined(WINNT)
#ident "$Id: fvectors.cc,v 1.4 2001/10/09 16:57:47 steve Exp $" #ident "$Id: fvectors.cc,v 1.5 2002/08/11 23:47:05 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -88,3 +88,9 @@ vvp_fvector_t vvp_fvector_new(unsigned size)
return v; return v;
} }
/*
* $Log: fvectors.cc,v $
* Revision 1.5 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -18,7 +18,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
*/ */
#if !defined(WINNT) #if !defined(WINNT)
#ident "$Id: memory.cc,v 1.16 2002/03/17 03:23:31 steve Exp $" #ident "$Id: memory.cc,v 1.17 2002/08/11 23:47:05 steve Exp $"
#endif #endif
#include "memory.h" #include "memory.h"
@ -504,3 +504,10 @@ void schedule_memory(vvp_memory_t mem, unsigned idx,
e->idx = idx; e->idx = idx;
schedule_generic(e, val, delay); schedule_generic(e, val, delay);
} }
/*
* $Log: memory.cc,v $
* Revision 1.17 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/

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
*/ */
#if !defined(WINNT) && !defined(macintosh) #if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vpi_mcd.cc,v 1.6 2002/01/04 02:26:36 steve Exp $" #ident "$Id: vpi_mcd.cc,v 1.7 2002/08/11 23:47:05 steve Exp $"
#endif #endif
# include "vpi_priv.h" # include "vpi_priv.h"
@ -159,3 +159,10 @@ int vpi_mcd_fgetc(unsigned int mcd)
} }
return 0; return 0;
} }
/*
* $Log: vpi_mcd.cc,v $
* Revision 1.7 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/

View File

@ -1,3 +1,7 @@
#if !defined(WINNT) && !defined(macintosh)
#ident "$Id: vvp_vpi.cc,v 1.4 2002/08/11 23:47:05 steve Exp $"
#endif
#include <stdarg.h> #include <stdarg.h>
#include "vpi_user.h" #include "vpi_user.h"
#include "vpithunk.h" #include "vpithunk.h"
@ -32,3 +36,10 @@ void vvp_vpi_init()
vvpt.vpi_get_vlog_info = vpi_get_vlog_info; vvpt.vpi_get_vlog_info = vpi_get_vlog_info;
vvpt.vpi_chk_error = vpi_chk_error; vvpt.vpi_chk_error = vpi_chk_error;
} }
/*
* $Log: vvp_vpi.cc,v $
* Revision 1.4 2002/08/11 23:47:05 steve
* Add missing Log and Ident strings.
*
*/