ivl_target header search path fixes.
This commit is contained in:
parent
2fbc0af1ea
commit
cf3f1b38c3
|
|
@ -17,14 +17,14 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#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
|
||||
|
||||
/*
|
||||
* This is a null target module. It does nothing.
|
||||
*/
|
||||
|
||||
# include <ivl_target.h>
|
||||
# include "ivl_target.h"
|
||||
|
||||
|
||||
int target_design(ivl_design_t des)
|
||||
|
|
@ -39,6 +39,9 @@ DECLARE_CYGWIN_DLL(DllMain);
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Make the null target into a loadable target.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# 59 Temple Place - Suite 330
|
||||
# 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
|
||||
|
|
@ -47,7 +47,7 @@ all: pal.tgt
|
|||
|
||||
%.o: %.c
|
||||
@[ -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
|
||||
|
||||
O = imain.o dump_final.o emit_jed.o enables.o fit_log.o fit_reg.o pads.o
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* 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 "priv.h"
|
||||
|
||||
|
|
@ -77,6 +77,9 @@ void absorb_pad_enables(void)
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Stuff registers into macrocells.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -17,10 +17,10 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#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
|
||||
|
||||
# include <ivl_target.h>
|
||||
# include "ivl_target.h"
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
# include <assert.h>
|
||||
|
|
@ -126,6 +126,9 @@ int fit_logic(void)
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Start support for fitting the logic.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -17,10 +17,10 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#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
|
||||
|
||||
# include <ivl_target.h>
|
||||
# include "ivl_target.h"
|
||||
# include <stdio.h>
|
||||
# include <assert.h>
|
||||
# include "priv.h"
|
||||
|
|
@ -136,6 +136,9 @@ int scan_ff_q(ivl_lpm_ff_t ff, unsigned q)
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Add client data pointer for scope and process scanners.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# 59 Temple Place - Suite 330
|
||||
# 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
|
||||
|
|
@ -47,7 +47,7 @@ all: stub.tgt
|
|||
|
||||
%.o: %.c
|
||||
@[ -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
|
||||
|
||||
O = stub.o
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#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
|
||||
|
||||
/*
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
* understand the behavior of the core as it uses a target module.
|
||||
*/
|
||||
|
||||
# include <ivl_target.h>
|
||||
# include "ivl_target.h"
|
||||
# include <stdio.h>
|
||||
|
||||
static FILE*out;
|
||||
|
|
@ -415,6 +415,9 @@ DECLARE_CYGWIN_DLL(DllMain);
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Pass scope type information to the target module.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# 59 Temple Place - Suite 330
|
||||
# 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
|
||||
|
|
@ -47,7 +47,7 @@ all: verilog.tgt
|
|||
|
||||
%.o: %.c
|
||||
@[ -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
|
||||
|
||||
O = verilog.o
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#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
|
||||
|
||||
/*
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
* the design, but is internally the complete design.
|
||||
*/
|
||||
|
||||
# include <ivl_target.h>
|
||||
# include "ivl_target.h"
|
||||
# include <stdio.h>
|
||||
# include <assert.h>
|
||||
|
||||
|
|
@ -440,6 +440,9 @@ DECLARE_CYGWIN_DLL(DllMain);
|
|||
|
||||
/*
|
||||
* $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
|
||||
* Add client data pointer for scope and process scanners.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue