ivl_target header search path fixes.

This commit is contained in:
steve 2001-02-07 22:21:59 +00:00
parent 2fbc0af1ea
commit cf3f1b38c3
9 changed files with 36 additions and 18 deletions

View File

@ -17,14 +17,14 @@
* 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: null.c,v 1.1 2000/12/02 04:50:32 steve Exp $" #ident "$Id: null.c,v 1.2 2001/02/07 22:21:59 steve Exp $"
#endif #endif
/* /*
* This is a null target module. It does nothing. * This is a null target module. It does nothing.
*/ */
# include <ivl_target.h> # include "ivl_target.h"
int target_design(ivl_design_t des) int target_design(ivl_design_t des)
@ -39,6 +39,9 @@ DECLARE_CYGWIN_DLL(DllMain);
/* /*
* $Log: null.c,v $ * $Log: null.c,v $
* Revision 1.2 2001/02/07 22:21:59 steve
* ivl_target header search path fixes.
*
* Revision 1.1 2000/12/02 04:50:32 steve * Revision 1.1 2000/12/02 04:50:32 steve
* Make the null target into a loadable target. * Make the null target into a loadable target.
* *

View File

@ -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.6 2001/01/18 03:09:45 steve Exp $" #ident "$Id: Makefile.in,v 1.7 2001/02/07 22:22:00 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -47,7 +47,7 @@ all: pal.tgt
%.o: %.c %.o: %.c
@[ -d dep ] || mkdir dep @[ -d dep ] || mkdir dep
$(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o
mv $*.d dep mv $*.d dep
O = imain.o dump_final.o emit_jed.o enables.o fit_log.o fit_reg.o pads.o O = imain.o dump_final.o emit_jed.o enables.o fit_log.o fit_reg.o pads.o

View File

@ -16,9 +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.2 2000/12/09 03:42:52 steve Exp $" #ident "$Id: enables.c,v 1.3 2001/02/07 22:22:00 steve Exp $"
# include <ivl_target.h> # include "ivl_target.h"
# include <assert.h> # include <assert.h>
# include "priv.h" # include "priv.h"
@ -77,6 +77,9 @@ void absorb_pad_enables(void)
/* /*
* $Log: enables.c,v $ * $Log: enables.c,v $
* Revision 1.3 2001/02/07 22:22:00 steve
* ivl_target header search path fixes.
*
* Revision 1.2 2000/12/09 03:42:52 steve * Revision 1.2 2000/12/09 03:42:52 steve
* Stuff registers into macrocells. * Stuff registers into macrocells.
* *

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: fit_log.c,v 1.1 2000/12/14 23:37:47 steve Exp $" #ident "$Id: fit_log.c,v 1.2 2001/02/07 22:22:00 steve Exp $"
#endif #endif
# include <ivl_target.h> # include "ivl_target.h"
# include <stdio.h> # include <stdio.h>
# include <stdlib.h> # include <stdlib.h>
# include <assert.h> # include <assert.h>
@ -126,6 +126,9 @@ int fit_logic(void)
/* /*
* $Log: fit_log.c,v $ * $Log: fit_log.c,v $
* Revision 1.2 2001/02/07 22:22:00 steve
* ivl_target header search path fixes.
*
* Revision 1.1 2000/12/14 23:37:47 steve * Revision 1.1 2000/12/14 23:37:47 steve
* Start support for fitting the logic. * Start support for fitting the logic.
* *

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: fit_reg.c,v 1.3 2001/01/15 00:05:39 steve Exp $" #ident "$Id: fit_reg.c,v 1.4 2001/02/07 22:22:00 steve Exp $"
#endif #endif
# include <ivl_target.h> # include "ivl_target.h"
# include <stdio.h> # include <stdio.h>
# include <assert.h> # include <assert.h>
# include "priv.h" # include "priv.h"
@ -136,6 +136,9 @@ int scan_ff_q(ivl_lpm_ff_t ff, unsigned q)
/* /*
* $Log: fit_reg.c,v $ * $Log: fit_reg.c,v $
* Revision 1.4 2001/02/07 22:22:00 steve
* ivl_target header search path fixes.
*
* Revision 1.3 2001/01/15 00:05:39 steve * Revision 1.3 2001/01/15 00:05:39 steve
* Add client data pointer for scope and process scanners. * Add client data pointer for scope and process scanners.
* *

View File

@ -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.6 2000/12/14 23:38:04 steve Exp $" #ident "$Id: Makefile.in,v 1.7 2001/02/07 22:22:00 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -47,7 +47,7 @@ all: stub.tgt
%.o: %.c %.o: %.c
@[ -d dep ] || mkdir dep @[ -d dep ] || mkdir dep
$(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o
mv $*.d dep mv $*.d dep
O = stub.o O = stub.o

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: stub.c,v 1.28 2001/01/15 00:47:02 steve Exp $" #ident "$Id: stub.c,v 1.29 2001/02/07 22:22:00 steve Exp $"
#endif #endif
/* /*
@ -27,7 +27,7 @@
* understand the behavior of the core as it uses a target module. * understand the behavior of the core as it uses a target module.
*/ */
# include <ivl_target.h> # include "ivl_target.h"
# include <stdio.h> # include <stdio.h>
static FILE*out; static FILE*out;
@ -415,6 +415,9 @@ DECLARE_CYGWIN_DLL(DllMain);
/* /*
* $Log: stub.c,v $ * $Log: stub.c,v $
* Revision 1.29 2001/02/07 22:22:00 steve
* ivl_target header search path fixes.
*
* Revision 1.28 2001/01/15 00:47:02 steve * Revision 1.28 2001/01/15 00:47:02 steve
* Pass scope type information to the target module. * Pass scope type information to the target module.
* *

View File

@ -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.5 2000/12/14 23:38:04 steve Exp $" #ident "$Id: Makefile.in,v 1.6 2001/02/07 22:22:00 steve Exp $"
# #
# #
SHELL = /bin/sh SHELL = /bin/sh
@ -47,7 +47,7 @@ all: verilog.tgt
%.o: %.c %.o: %.c
@[ -d dep ] || mkdir dep @[ -d dep ] || mkdir dep
$(CC) -Wall $(CPPFLAGS) -I$(srcdir)/.. -MD -c $< -o $*.o $(CC) -Wall -I$(srcdir)/.. $(CPPFLAGS) -MD -c $< -o $*.o
mv $*.d dep mv $*.d dep
O = verilog.o O = verilog.o

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: verilog.c,v 1.19 2001/01/15 00:05:39 steve Exp $" #ident "$Id: verilog.c,v 1.20 2001/02/07 22:22:00 steve Exp $"
#endif #endif
/* /*
@ -26,7 +26,7 @@
* the design, but is internally the complete design. * the design, but is internally the complete design.
*/ */
# include <ivl_target.h> # include "ivl_target.h"
# include <stdio.h> # include <stdio.h>
# include <assert.h> # include <assert.h>
@ -440,6 +440,9 @@ DECLARE_CYGWIN_DLL(DllMain);
/* /*
* $Log: verilog.c,v $ * $Log: verilog.c,v $
* Revision 1.20 2001/02/07 22:22:00 steve
* ivl_target header search path fixes.
*
* Revision 1.19 2001/01/15 00:05:39 steve * Revision 1.19 2001/01/15 00:05:39 steve
* Add client data pointer for scope and process scanners. * Add client data pointer for scope and process scanners.
* *