Compile time problems with vpi_user.h

This commit is contained in:
steve 2000-01-23 23:54:36 +00:00
parent 9b3c3b6e7a
commit e6bd088984
6 changed files with 22 additions and 12 deletions

View File

@ -18,7 +18,7 @@
# 59 Temple Place - Suite 330 # 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA # Boston, MA 02111-1307, USA
# #
#ident "$Id: Makefile.in,v 1.34 2000/01/09 17:43:28 steve Exp $" #ident "$Id: Makefile.in,v 1.35 2000/01/23 23:54:36 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -39,6 +39,7 @@ includedir = $(prefix)/include
CC = @CC@ CC = @CC@
CXX = @CXX@ CXX = @CXX@
INSTALL = @INSTALL@ INSTALL = @INSTALL@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@ INSTALL_DATA = @INSTALL_DATA@
STRIP = @STRIP@ STRIP = @STRIP@
@ -122,7 +123,7 @@ install: all installdirs $(bindir)/verilog $(bindir)/gverilog $(libdir)/ivl/ivl
cd ivlpp ; $(MAKE) install cd ivlpp ; $(MAKE) install
$(bindir)/verilog: ./verilog $(bindir)/verilog: ./verilog
$(INSTALL_PROGRAM) ./verilog $(bindir)/verilog $(INSTALL_SCRIPT) ./verilog $(bindir)/verilog
$(bindir)/gverilog: ./gverilog $(bindir)/gverilog: ./gverilog
$(INSTALL_PROGRAM) ./gverilog $(bindir)/gverilog $(INSTALL_PROGRAM) ./gverilog $(bindir)/gverilog

View File

@ -18,7 +18,7 @@
# 59 Temple Place - Suite 330 # 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA # Boston, MA 02111-1307, USA
# #
#ident "$Id: Makefile.in,v 1.8 1999/12/15 04:01:14 steve Exp $" #ident "$Id: Makefile.in,v 1.9 2000/01/23 23:54:36 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -68,7 +68,7 @@ install: all installdirs $(libdir)/ivl/system.vpi \
$(includedir)/vpi_user.h $(includedir)/vpi_user.h
$(libdir)/ivl/system.vpi: ./system.vpi $(libdir)/ivl/system.vpi: ./system.vpi
$(INSTALL_PROGRAM) ./system.vpi $(libdir)/ivl/system.vpi $(INSTALL_DATA) ./system.vpi $(libdir)/ivl/system.vpi
$(includedir)/vpi_user.h: $(srcdir)/vpi_user.h $(includedir)/vpi_user.h: $(srcdir)/vpi_user.h
$(INSTALL_DATA) $(srcdir)/vpi_user.h $(includedir)/vpi_user.h $(INSTALL_DATA) $(srcdir)/vpi_user.h $(includedir)/vpi_user.h

View File

@ -17,10 +17,10 @@
* 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: sys_readmem.c,v 1.3 1999/12/15 04:35:34 steve Exp $" #ident "$Id: sys_readmem.c,v 1.4 2000/01/23 23:54:36 steve Exp $"
#endif #endif
# include <vpi_user.h> # include "vpi_user.h"
# include <string.h> # include <string.h>
# include <stdlib.h> # include <stdlib.h>
# include <stdio.h> # include <stdio.h>
@ -143,6 +143,9 @@ void sys_readmem_register()
/* /*
* $Log: sys_readmem.c,v $ * $Log: sys_readmem.c,v $
* Revision 1.4 2000/01/23 23:54:36 steve
* Compile time problems with vpi_user.h
*
* Revision 1.3 1999/12/15 04:35:34 steve * Revision 1.3 1999/12/15 04:35:34 steve
* Add readmemb. * Add readmemb.
* *

View File

@ -19,11 +19,11 @@
* 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: sys_readmem_lex.h,v 1.1 1999/12/15 04:01:14 steve Exp $" #ident "$Id: sys_readmem_lex.h,v 1.2 2000/01/23 23:54:36 steve Exp $"
#endif #endif
# include <stdio.h> # include <stdio.h>
# include <vpi_user.h> # include "vpi_user.h"
# define MEM_ADDRESS 257 # define MEM_ADDRESS 257
# define MEM_WORD 258 # define MEM_WORD 258
@ -34,6 +34,9 @@ extern int readmemlex();
/* /*
* $Log: sys_readmem_lex.h,v $ * $Log: sys_readmem_lex.h,v $
* Revision 1.2 2000/01/23 23:54:36 steve
* Compile time problems with vpi_user.h
*
* Revision 1.1 1999/12/15 04:01:14 steve * Revision 1.1 1999/12/15 04:01:14 steve
* Add the VPI implementation of $readmemh. * Add the VPI implementation of $readmemh.
* *

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: sys_vcd.c,v 1.4 2000/01/20 06:04:55 steve Exp $" #ident "$Id: sys_vcd.c,v 1.5 2000/01/23 23:54:36 steve Exp $"
#endif #endif
/* /*
@ -25,7 +25,7 @@
* funcitons. * funcitons.
*/ */
# include <vpi_user.h> # include "vpi_user.h"
# include <stdio.h> # include <stdio.h>
# include <stdlib.h> # include <stdlib.h>
# include <string.h> # include <string.h>
@ -257,6 +257,9 @@ void sys_vcd_register()
/* /*
* $Log: sys_vcd.c,v $ * $Log: sys_vcd.c,v $
* Revision 1.5 2000/01/23 23:54:36 steve
* Compile time problems with vpi_user.h
*
* Revision 1.4 2000/01/20 06:04:55 steve * Revision 1.4 2000/01/20 06:04:55 steve
* $dumpall checkpointing in VCD dump. * $dumpall checkpointing in VCD dump.
* *

View File

@ -18,7 +18,7 @@
# 59 Temple Place - Suite 330 # 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA # Boston, MA 02111-1307, USA
# #
#ident "$Id: Makefile.in,v 1.16 2000/01/13 03:35:35 steve Exp $" #ident "$Id: Makefile.in,v 1.17 2000/01/23 23:54:36 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -84,7 +84,7 @@ install: all installdirs $(libdir)/libvvm.a \
$(includedir)/vvm_calltf.h $(includedir)/vvm_calltf.h
$(libdir)/libvvm.a: ./libvvm.a $(libdir)/libvvm.a: ./libvvm.a
$(INSTALL_PROGRAM) ./libvvm.a $(libdir)/libvvm.a $(INSTALL_DATA) ./libvvm.a $(libdir)/libvvm.a
$(includedir)/vvm.h: $(srcdir)/vvm.h $(includedir)/vvm.h: $(srcdir)/vvm.h
$(INSTALL_DATA) $(srcdir)/vvm.h $(includedir)/vvm.h $(INSTALL_DATA) $(srcdir)/vvm.h $(includedir)/vvm.h