Spelling fixes.

This commit is contained in:
steve 2003-06-25 01:49:06 +00:00
parent 56b876afc4
commit f7162eb538
4 changed files with 16 additions and 9 deletions

View File

@ -43,7 +43,6 @@ warning.)
(* ivl_synthesis_cell *)
[XXX implementation is started but not complete]
If this value is attached to a module during synthesis, that
module will be considered a target architecture primitive, and
its interior will not be synthesized further. The module can

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: d-virtex.c,v 1.23 2003/06/24 03:55:00 steve Exp $"
#ident "$Id: d-virtex.c,v 1.24 2003/06/25 01:49:06 steve Exp $"
#endif
# include "device.h"
@ -908,7 +908,7 @@ static void edif_show_virtex_logic(ivl_net_logic_t net)
* output of the next higher muxcy is guaranteed to be 0, and so on to
* the final output of the carry chain. If the output from a LUT is ==,
* then the CI input of the muxcy is selected and the truth of this
* level depends on lower order bits. The least significan muxcy is
* level depends on lower order bits. The least significant muxcy is
* connected to GND and VCC so that its CO follows the least
* significant LUT.
*
@ -1941,6 +1941,9 @@ const struct device_s d_virtex_edif = {
/*
* $Log: d-virtex.c,v $
* Revision 1.24 2003/06/25 01:49:06 steve
* Spelling fixes.
*
* Revision 1.23 2003/06/24 03:55:00 steve
* Add ivl_synthesis_cell support for virtex2.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: d-virtex2.c,v 1.12 2003/06/25 01:46:44 steve Exp $"
#ident "$Id: d-virtex2.c,v 1.13 2003/06/25 01:49:06 steve Exp $"
#endif
# include "device.h"
@ -181,7 +181,7 @@ static void virtex2_show_footer(ivl_design_t des)
}
/*
* Make (or retreive) a cell in the external library that reflects the
* Make (or retrieve) a cell in the external library that reflects the
* scope with its ports.
*/
static void virtex2_show_scope(ivl_scope_t scope)
@ -832,7 +832,7 @@ static void virtex2_add(ivl_lpm_t net)
* output of the next higher muxcy is guaranteed to be 0, and so on to
* the final output of the carry chain. If the output from a LUT is ==,
* then the CI input of the muxcy is selected and the truth of this
* level depends on lower order bits. The least significan muxcy is
* level depends on lower order bits. The least significant muxcy is
* connected to GND and VCC so that its CO follows the least
* significant LUT.
*
@ -1139,6 +1139,9 @@ const struct device_s d_virtex2_edif = {
/*
* $Log: d-virtex2.c,v $
* Revision 1.13 2003/06/25 01:49:06 steve
* Spelling fixes.
*
* Revision 1.12 2003/06/25 01:46:44 steve
* Virtex support for NOT gates.
*

View File

@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: fpga.c,v 1.7 2003/06/24 03:55:00 steve Exp $"
#ident "$Id: fpga.c,v 1.8 2003/06/25 01:49:06 steve Exp $"
#endif
# include "config.h"
/*
* This is a null target module. It does nothing.
* This is the FPGA target module.
*/
# include <ivl_target.h>
@ -45,7 +45,6 @@ int scope_has_attribute(ivl_scope_t s, const char *name)
const struct ivl_attribute_s *a;
for (i=0; i<ivl_scope_attr_cnt(s); i++) {
a = ivl_scope_attr_val(s, i);
fprintf(stderr, "scope attribute key %s\n", a->key);
if (strcmp(a->key,name) == 0)
return 1;
}
@ -145,6 +144,9 @@ int target_design(ivl_design_t des)
/*
* $Log: fpga.c,v $
* Revision 1.8 2003/06/25 01:49:06 steve
* Spelling fixes.
*
* Revision 1.7 2003/06/24 03:55:00 steve
* Add ivl_synthesis_cell support for virtex2.
*