Add the acc_user.h header file.
This commit is contained in:
parent
8dd4f77f3f
commit
6511fc610b
|
|
@ -16,7 +16,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.123 2002/05/23 03:08:50 steve Exp $"
|
#ident "$Id: Makefile.in,v 1.124 2002/05/23 03:46:42 steve Exp $"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
@ -212,7 +212,7 @@ else
|
||||||
WIN32_INSTALL = $(bindir)/iverilog-vpi
|
WIN32_INSTALL = $(bindir)/iverilog-vpi
|
||||||
endif
|
endif
|
||||||
|
|
||||||
install: all installdirs $(libdir)/ivl/ivl@EXEEXT@ $(libdir)/ivl/iverilog.conf $(includedir)/ivl_target.h $(includedir)/vpi_user.h $(includedir)/veriuser.h $(libdir)/libvpi.a $(WIN32_INSTALL)
|
install: all installdirs $(libdir)/ivl/ivl@EXEEXT@ $(libdir)/ivl/iverilog.conf $(includedir)/ivl_target.h $(includedir)/vpi_user.h $(includedir)/acc_user.h $(includedir)/veriuser.h $(libdir)/libvpi.a $(WIN32_INSTALL)
|
||||||
cd vpi ; $(MAKE) install
|
cd vpi ; $(MAKE) install
|
||||||
cd ivlpp ; $(MAKE) install
|
cd ivlpp ; $(MAKE) install
|
||||||
cd driver ; $(MAKE) install
|
cd driver ; $(MAKE) install
|
||||||
|
|
@ -238,6 +238,9 @@ $(includedir)/ivl_target.h: $(srcdir)/ivl_target.h
|
||||||
$(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
|
||||||
|
|
||||||
|
$(includedir)/acc_user.h: $(srcdir)/acc_user.h
|
||||||
|
$(INSTALL_DATA) $(srcdir)/acc_user.h $(includedir)/acc_user.h
|
||||||
|
|
||||||
$(includedir)/veriuser.h: $(srcdir)/veriuser.h
|
$(includedir)/veriuser.h: $(srcdir)/veriuser.h
|
||||||
$(INSTALL_DATA) $(srcdir)/veriuser.h $(includedir)/veriuser.h
|
$(INSTALL_DATA) $(srcdir)/veriuser.h $(includedir)/veriuser.h
|
||||||
|
|
||||||
|
|
@ -267,6 +270,7 @@ uninstall:
|
||||||
rm -f $(bindir)/gverilog@EXEEXT@
|
rm -f $(bindir)/gverilog@EXEEXT@
|
||||||
rm -f $(includedir)/ivl_target.h
|
rm -f $(includedir)/ivl_target.h
|
||||||
rm -f $(includedir)/vpi_user.h
|
rm -f $(includedir)/vpi_user.h
|
||||||
|
rm -f $(includedir)/acc_user.h
|
||||||
rm -f $(includedir)/veriuser.h
|
rm -f $(includedir)/veriuser.h
|
||||||
cd driver ; $(MAKE) uninstall
|
cd driver ; $(MAKE) uninstall
|
||||||
cd vpi ; $(MAKE) uninstall
|
cd vpi ; $(MAKE) uninstall
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,59 @@
|
||||||
|
#ifndef __acc_user_H
|
||||||
|
#define __acc_user_H
|
||||||
|
/*
|
||||||
|
* Copyright (c) 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: acc_user.h,v 1.1 2002/05/23 03:46:42 steve Exp $"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This header file contains the definitions and declarations needed
|
||||||
|
* by an Icarus Verilog user using acc_ routines.
|
||||||
|
*
|
||||||
|
* NOTE: Icarus Verilog does not support acc_ routines. This is just a
|
||||||
|
* stub. The functions that are implemented here are actually
|
||||||
|
* implemented using VPI routines.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
# define EXTERN_C_START extern "C" {
|
||||||
|
# define EXTERN_C_END }
|
||||||
|
#else
|
||||||
|
# define EXTERN_C_START
|
||||||
|
# define EXTERN_C_END
|
||||||
|
# define bool int
|
||||||
|
#endif
|
||||||
|
|
||||||
|
EXTERN_C_START
|
||||||
|
|
||||||
|
extern int acc_error_flag;
|
||||||
|
|
||||||
|
extern int acc_initialize(void);
|
||||||
|
extern void acc_close(void);
|
||||||
|
|
||||||
|
EXTERN_C_END
|
||||||
|
|
||||||
|
/*
|
||||||
|
* $Log: acc_user.h,v $
|
||||||
|
* Revision 1.1 2002/05/23 03:46:42 steve
|
||||||
|
* Add the acc_user.h header file.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
@ -16,7 +16,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.2 2002/05/23 03:35:42 steve Exp $"
|
#ident "$Id: Makefile.in,v 1.3 2002/05/23 03:46:42 steve Exp $"
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
@ -44,7 +44,8 @@ CFLAGS = @CFLAGS@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
STRIP = @STRIP@
|
STRIP = @STRIP@
|
||||||
|
|
||||||
O = finish.o io_print.o
|
A = a_close.o a_initialize.o
|
||||||
|
O = finish.o io_print.o $A
|
||||||
|
|
||||||
all: libveriuser.a
|
all: libveriuser.a
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.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)
|
||||||
|
#ident "$Id: a_close.c,v 1.1 2002/05/23 03:46:42 steve Exp $"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
# include <acc_user.h>
|
||||||
|
|
||||||
|
void acc_close(void) { }
|
||||||
|
|
||||||
|
/*
|
||||||
|
* $Log: a_close.c,v $
|
||||||
|
* Revision 1.1 2002/05/23 03:46:42 steve
|
||||||
|
* Add the acc_user.h header file.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2002 Michael Ruff (mruff at chiaro.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)
|
||||||
|
#ident "$Id: a_initialize.c,v 1.1 2002/05/23 03:46:42 steve Exp $"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
# include <acc_user.h>
|
||||||
|
|
||||||
|
int acc_error_flag;
|
||||||
|
|
||||||
|
int acc_initialize()
|
||||||
|
{
|
||||||
|
acc_error_flag = 0;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* $Log: a_initialize.c,v $
|
||||||
|
* Revision 1.1 2002/05/23 03:46:42 steve
|
||||||
|
* Add the acc_user.h header file.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
@ -54,6 +54,7 @@ make prefix=$RPM_BUILD_ROOT/usr install
|
||||||
%attr(-,root,root) /usr/include/ivl_target.h
|
%attr(-,root,root) /usr/include/ivl_target.h
|
||||||
%attr(-,root,root) /usr/include/vpi_priv.h
|
%attr(-,root,root) /usr/include/vpi_priv.h
|
||||||
%attr(-,root,root) /usr/include/vpi_user.h
|
%attr(-,root,root) /usr/include/vpi_user.h
|
||||||
|
%attr(-,root,root) /usr/include/acc_user.h
|
||||||
%attr(-,root,root) /usr/include/veriuser.h
|
%attr(-,root,root) /usr/include/veriuser.h
|
||||||
%attr(-,root,root) /usr/include/vvm.h
|
%attr(-,root,root) /usr/include/vvm.h
|
||||||
%attr(-,root,root) /usr/include/vvm_calltf.h
|
%attr(-,root,root) /usr/include/vvm_calltf.h
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue