Spelling fixes (larry doolittle)

This commit is contained in:
steve 2007-02-26 19:49:48 +00:00
parent d6969b719a
commit 6804732b9e
26 changed files with 109 additions and 58 deletions

View File

@ -37,7 +37,7 @@ AC_SUBST(DLLIB)
AX_CPP_PRECOMP
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
# Linker option used when compiling the target

View File

@ -93,7 +93,7 @@ AC_C_BIGENDIAN
AX_LD_EXTRALIBS
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
# CFLAGS inherited by cadpli/Makefile?
AX_C_PICFLAG

View File

@ -1,4 +1,4 @@
.TH iverilog 1 "$Date: 2006/09/28 04:35:18 $" Version "$Date: 2006/09/28 04:35:18 $"
.TH iverilog 1 "$Date: 2007/02/26 19:49:49 $" Version "$Date: 2007/02/26 19:49:49 $"
.SH NAME
iverilog - Icarus Verilog compiler
@ -62,7 +62,7 @@ Enable (default) or disable specify block support. When enabled,
specify block code is elaborated. When disabled, specify blocks are
parsed but ignored. Specify blocks are commonly not needed for RTL
simulation, and in fact can hurt performance of the
simulation. However, disabling specify blocks reduces acuracy of
simulation. However, disabling specify blocks reduces accuracy of
full-timing simulations.
.TP 8
.B -gxtypes\fI|\fP-gno-xtypes

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: elab_net.cc,v 1.198 2007/02/05 01:42:31 steve Exp $"
#ident "$Id: elab_net.cc,v 1.199 2007/02/26 19:49:48 steve Exp $"
#endif
# include "config.h"
@ -2705,8 +2705,8 @@ NetNet* PETernary::elaborate_net(Design*des, NetScope*scope,
/* If the MUX device results is too narrow to fill out the
desired result, then pad it. It is OK to have a too-narrow
result here because the dwidth choise is >= the width of
both alternatives. Thus, padding here is equivilent to
result here because the dwidth choice is >= the width of
both alternatives. Thus, padding here is equivalent to
padding inside, and is cheaper. */
if (dwidth < width)
sig = pad_to_width(des, sig, width);
@ -2909,6 +2909,9 @@ NetNet* PEUnary::elaborate_net(Design*des, NetScope*scope,
/*
* $Log: elab_net.cc,v $
* Revision 1.199 2007/02/26 19:49:48 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.198 2007/02/05 01:42:31 steve
* Set some missing local flags.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: ivl_target.h,v 1.177 2007/02/25 23:08:24 steve Exp $"
#ident "$Id: ivl_target.h,v 1.178 2007/02/26 19:49:49 steve Exp $"
#endif
# include <inttypes.h>
@ -1343,7 +1343,7 @@ extern ivl_expr_t ivl_parameter_expr(ivl_parameter_t net);
* ivl_scope_def
* Task definition scopes carry a task definition, in the form of
* a statement. This method accesses that definition. The
* ivl_scope_def function must return a statment for scopes that
* ivl_scope_def function must return a statement for scopes that
* are type FUNCTION or TASK, and most return nil otherwise.
*
* ivl_scope_event
@ -1654,8 +1654,8 @@ extern ivl_statement_type_t ivl_statement_type(ivl_statement_t net);
* - IVL_ST_DELAY, IVL_ST_DELAYX
* These statement types are delay statements. They are a way to
* attach a delay to a statement. The ivl_stmt_sub_stmt() function
* gets the statment to be executed after the delay. If this an
* ivl_ST_DELAY, then the ivl_stmt_delay_val function gets the
* gets the statement to be executed after the delay. If this is
* IVL_ST_DELAY, then the ivl_stmt_delay_val function gets the
* constant delay. If this is IVL_ST_DELAYX, then the
* ivl_stmt_delay_expr gets the expression of the delay. In this case,
* the expression is not necessarily constant.
@ -1768,6 +1768,9 @@ _END_DECL
/*
* $Log: ivl_target.h,v $
* Revision 1.178 2007/02/26 19:49:49 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.177 2007/02/25 23:08:24 steve
* Process Verilog escape sequences much earlier.
*

View File

@ -23,7 +23,7 @@ AC_CHECK_SIZEOF(unsigned)
# may modify CPPFLAGS and CFLAGS
AX_CPP_PRECOMP
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
AC_SUBST(EXEEXT)

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: netmisc.h,v 1.27 2007/01/16 05:44:15 steve Exp $"
#ident "$Id: netmisc.h,v 1.28 2007/02/26 19:49:49 steve Exp $"
#endif
# include "netlist.h"
@ -87,7 +87,7 @@ extern NetNet*add_to_net(Design*des, NetNet*sig, long val);
* where order matters.
*
* make_add_expr
* Make a NetEBAdd expresion with <expr> the first argument and
* Make a NetEBAdd expression with <expr> the first argument and
* <val> the second. This may get turned into a subtract if <val> is
* less then zero. If val is exactly zero, then return <expr> as is.
*
@ -120,6 +120,9 @@ extern NetExpr* elab_and_eval(Design*des, NetScope*scope,
/*
* $Log: netmisc.h,v $
* Revision 1.28 2007/02/26 19:49:49 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.27 2007/01/16 05:44:15 steve
* Major rework of array handling. Memories are replaced with the
* more general concept of arrays. The NetMemory and NetEMemory

View File

@ -1,8 +1,8 @@
# $Id: README-solaris_pkg.txt,v 1.2 2004/10/04 01:10:56 steve Exp $
# $Id: README-solaris_pkg.txt,v 1.3 2007/02/26 19:49:49 steve Exp $
Notes about the solaris package.
I. Installing a prebuild solaris package
I. Installing a prebuilt solaris package
-----------------------------------------
To install the solaris package do the following as root on your machine:
@ -24,10 +24,10 @@ To install the solaris package do the following as root on your machine:
this will install the package. The package will be registered under the
name "IVLver"
II. Deinstalling the solaris package
II. Uninstalling the solaris package
-------------------------------------
To deinstall an installed solaris package do the following as root on your machine:
To uninstall an installed solaris package do the following as root on your machine:
pkgrm IVLver

View File

@ -17,7 +17,7 @@ AC_CHECK_HEADERS(malloc.h)
# may modify CPPFLAGS and CFLAGS
AX_CPP_PRECOMP
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
# linker options when building a shared library

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: device.h,v 1.14 2003/11/12 03:20:14 steve Exp $"
#ident "$Id: device.h,v 1.15 2007/02/26 19:49:49 steve Exp $"
#endif
# include <ivl_target.h>
@ -72,7 +72,7 @@ struct device_s {
* Return the device_t cookie given the name of the architecture. If
* the device is not found, return 0.
*
* This function is used if the user specifies the archetecture
* This function is used if the user specifies the architecture
* explicitly, with the -parch=name flag.
*/
extern device_t device_from_arch(const char*arch);
@ -80,6 +80,9 @@ extern device_t device_from_arch(const char*arch);
/*
* $Log: device.h,v $
* Revision 1.15 2007/02/26 19:49:49 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.14 2003/11/12 03:20:14 steve
* devices need show_cmp_gt
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: edif.h,v 1.7 2003/09/03 23:34:09 steve Exp $"
#ident "$Id: edif.h,v 1.8 2007/02/26 19:49:49 steve Exp $"
#endif
# include <stdio.h>
@ -47,7 +47,7 @@
*
* Declare external libraries with edif_xlibrary_create
* Normally, this is the single technology library that contains
* the primitive cells that the code generator intendes to
* the primitive cells that the code generator intends to
* use. The library is given a name, such as VIRTEX or whatever
* the implementation tools expect. Cells are attached to the
* library later. An edif netlist may include multiple external
@ -196,7 +196,7 @@ extern edif_cellref_t edif_cellref_create(edif_t edf, edif_cell_t cell);
/* Instances can have properties attached to them. The name and value
given here are turned into a (property <name> (string "val"))
sexpression attached to the instance.
expression attached to the instance.
Examples of string properties commonly attached to cellref devices
include such things as the INIT=<value> to initialize LUT cells in
@ -231,6 +231,9 @@ extern void edif_print(FILE*fd, edif_t design);
/*
* $Log: edif.h,v $
* Revision 1.8 2007/02/26 19:49:49 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.7 2003/09/03 23:34:09 steve
* Support synchronous set of LPM_FF devices.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: xilinx.c,v 1.12 2004/02/15 18:03:30 steve Exp $"
#ident "$Id: xilinx.c,v 1.13 2007/02/26 19:49:50 steve Exp $"
#endif
# include "edif.h"
@ -273,7 +273,7 @@ edif_cell_t xilinx_cell_xorcy(edif_xlibrary_t xlib)
/*
* This function does a lot of the stuff common to the header
* functions of various Xilinx familes. This includes creating the edf
* functions of various Xilinx families. This includes creating the edf
* object that holds the netlist.
*/
void xilinx_common_header(ivl_design_t des)
@ -835,14 +835,14 @@ void xilinx_shiftl(ivl_lpm_t net)
/* Allocate a matrix of edif_cellref_t variables. A devices
will be addressed by the expression table[sdx][qdx];
This should make the algorighm code easier to read. */
This should make the algorithm code easier to read. */
cells = calloc(nsel * width, sizeof(edif_cellref_t));
table = calloc(nsel, sizeof(edif_cellref_t*));
for (sdx = 0 ; sdx < nsel ; sdx += 1)
table[sdx] = cells + sdx*width;
/* Make a 0 valued pad bit. I wlil use this for all the shifin
/* Make a 0 valued pad bit. I will use this for all the shift in
values that are beyond the input. */
pad0_cell = edif_cellref_create(edf, cell_0);
pad0 = edif_joint_create(edf);
@ -951,6 +951,9 @@ void xilinx_shiftl(ivl_lpm_t net)
/*
* $Log: xilinx.c,v $
* Revision 1.13 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.12 2004/02/15 18:03:30 steve
* Cleanup of warnings.
*

View File

@ -19,13 +19,13 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: xilinx.h,v 1.8 2003/08/15 02:23:53 steve Exp $"
#ident "$Id: xilinx.h,v 1.9 2007/02/26 19:49:50 steve Exp $"
#endif
/*
* This header file includes XILINX library support functions. They
* manage the creation and reference of cells from the library. Use
* the xililx_cell_* functions to get an edif_cell_t from the
* the xilinx_cell_* functions to get an edif_cell_t from the
* library. The function will create the cell in the library if
* needed, or will return the existing cell if it was already called.
*/
@ -130,6 +130,9 @@ extern void xilinx_shiftl(ivl_lpm_t net);
/*
* $Log: xilinx.h,v $
* Revision 1.9 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.8 2003/08/15 02:23:53 steve
* Add synthesis support for synchronous reset.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: fit_log.c,v 1.5 2002/08/12 01:35:03 steve Exp $"
#ident "$Id: fit_log.c,v 1.6 2007/02/26 19:49:50 steve Exp $"
#endif
# include "config.h"
@ -29,7 +29,7 @@
# include "priv.h"
/*
* By the time we get here, all the flip-flops iave been placed in
* By the time we get here, all the flip-flops have been placed in
* macrocells, and enables attached to them. So all that's left is to
* work backwards from each macrocell, making terms and sum-of-terms
* from the asynchronous logic until we get to the table inputs.
@ -128,6 +128,9 @@ int fit_logic(void)
/*
* $Log: fit_log.c,v $
* Revision 1.6 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.5 2002/08/12 01:35:03 steve
* conditional ident string using autoconfig.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: priv.h,v 1.7 2002/08/12 01:35:03 steve Exp $"
#ident "$Id: priv.h,v 1.8 2007/02/26 19:49:50 steve Exp $"
#endif
# include <ivl_target.h>
@ -88,7 +88,7 @@ extern struct pal_bind_s* bind_pin;
/*
* These are various stepps in the fitting process.
* These are various steps in the fitting process.
*/
extern int get_pad_bindings(ivl_scope_t net, void*x);
@ -102,6 +102,9 @@ extern int emit_jedec(const char*path);
/*
* $Log: priv.h,v $
* Revision 1.8 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.7 2002/08/12 01:35:03 steve
* conditional ident string using autoconfig.
*

View File

@ -15,7 +15,7 @@ AX_WIN32
# may modify CPPFLAGS and CFLAGS
AX_CPP_PRECOMP
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
# linker options when building a shared library

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: verilog.c,v 1.28 2004/02/15 18:03:30 steve Exp $"
#ident "$Id: verilog.c,v 1.29 2007/02/26 19:49:50 steve Exp $"
#endif
# include "config.h"
@ -141,7 +141,7 @@ static int draw_logic(ivl_net_logic_t net)
}
/*
* Scan the scope and its children for logic gates. Ise the draw_logic
* Scan the scope and its children for logic gates. Use the draw_logic
* function to draw the actual gate.
*/
static int draw_scope_logic(ivl_scope_t scope, void*x)
@ -439,6 +439,9 @@ int target_design(ivl_design_t des)
/*
* $Log: verilog.c,v $
* Revision 1.29 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.28 2004/02/15 18:03:30 steve
* Cleanup of warnings.
*

View File

@ -28,7 +28,7 @@ esac
AC_CHECK_FUNCS(fopen64)
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
# linker options when building a shared library

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: eval_expr.c,v 1.134 2007/02/12 04:37:58 steve Exp $"
#ident "$Id: eval_expr.c,v 1.135 2007/02/26 19:49:50 steve Exp $"
#endif
# include "vvp_priv.h"
@ -135,7 +135,7 @@ void draw_eval_expr_into_integer(ivl_expr_t expr, unsigned ix)
/*
* The STUFF_OK_XZ bit is true if the output is going to be further
* processed so that x and z values are equivilent. This may allow for
* processed so that x and z values are equivalent. This may allow for
* new optimizations.
*/
static struct vector_info draw_eq_immediate(ivl_expr_t exp, unsigned ewid,
@ -479,7 +479,7 @@ static struct vector_info draw_binary_expr_lor(ivl_expr_t exp, unsigned wid)
lv = draw_eval_expr(le, STUFF_OK_XZ);
/* if the left operand has width, then evaluate the single-bit
logical equivilent. */
logical equivalent. */
if ((lv.base >= 4) && (lv.wid > 1)) {
struct vector_info tmp;
clr_vector(lv);
@ -493,7 +493,7 @@ static struct vector_info draw_binary_expr_lor(ivl_expr_t exp, unsigned wid)
rv = draw_eval_expr(re, STUFF_OK_XZ);
/* if the right operand has width, then evaluate the single-bit
logical equivilent. */
logical equivalent. */
if ((rv.base >= 4) && (rv.wid > 1)) {
struct vector_info tmp;
clr_vector(rv);
@ -1104,7 +1104,7 @@ static struct vector_info draw_binary_expr_arith(ivl_expr_t exp, unsigned wid)
/* The arithmetic instructions replace the left operand with
the result. If the left operand is a replicated constant,
then I need to make a writeable copy so that the
then I need to make a writable copy so that the
instruction can operate. */
if (lv.base < 4) {
struct vector_info tmp;
@ -1229,7 +1229,7 @@ static struct vector_info draw_binary_expr(ivl_expr_t exp,
/*
* The concatenation operator is evaluated by evaluating each sub-
* expression, then copying it into the continguous vector of the
* expression, then copying it into the contiguous vector of the
* result. Do this until the result vector is filled.
*/
static struct vector_info draw_concat_expr(ivl_expr_t exp, unsigned wid,
@ -1782,7 +1782,7 @@ static struct vector_info draw_select_expr(ivl_expr_t exp, unsigned wid,
clr_vector(shiv);
/* If the subv result is a magic constant, then make a copy in
writeable vector space and work from there instead. */
writable vector space and work from there instead. */
if (subv.base < 4) {
res.base = allocate_vector(subv.wid);
res.wid = subv.wid;
@ -2201,6 +2201,9 @@ struct vector_info draw_eval_expr(ivl_expr_t exp, int stuff_ok_flag)
/*
* $Log: eval_expr.c,v $
* Revision 1.135 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.134 2007/02/12 04:37:58 steve
* Get padding right when loading array word into big vector.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: eval_real.c,v 1.19 2007/02/20 05:58:36 steve Exp $"
#ident "$Id: eval_real.c,v 1.20 2007/02/26 19:49:50 steve Exp $"
#endif
/*
@ -120,7 +120,7 @@ static int draw_number_real(ivl_expr_t exp)
}
/* If this is actually a negative number, then get the
positive equivilent, and set the sign bit in the exponent
positive equivalent, and set the sign bit in the exponent
field. */
if (ivl_expr_signed(exp) && (bits[wid-1] == '1')) {
mant = (0-mant) & ((1UL<<wid) - 1UL);
@ -419,6 +419,9 @@ int draw_eval_real(ivl_expr_t exp)
/*
* $Log: eval_real.c,v $
* Revision 1.20 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.19 2007/02/20 05:58:36 steve
* Handle unary minus of real valued expressions.
*

View File

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: vector.c,v 1.11 2007/02/06 04:43:53 steve Exp $"
#ident "$Id: vector.c,v 1.12 2007/02/26 19:49:50 steve Exp $"
#endif
# include "vvp_priv.h"
@ -24,7 +24,7 @@
/* Maximum vector bits in a thread. If a thread co-processor is
* implemented, this value may need to be reduced. At that time
* wider operatons will need to be partitioned. For example
* wider operations will need to be partitioned. For example
* shift operations on WIDE (say > 64k bit) registers.
*/
#define MAX_VEC (256*1024)
@ -372,6 +372,9 @@ unsigned allocate_vector_exp(ivl_expr_t exp, unsigned wid,
/*
* $Log: vector.c,v $
* Revision 1.12 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.11 2007/02/06 04:43:53 steve
* Expression lookaside cannot hold complex expressions
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: vvp_priv.h,v 1.42 2007/01/17 04:39:18 steve Exp $"
#ident "$Id: vvp_priv.h,v 1.43 2007/02/26 19:49:50 steve Exp $"
#endif
# include "vvp_config.h"
@ -28,7 +28,7 @@
/*
* The target_design entry opens the output file that receives the
* compiled design, and sets the vvp_out to the descripter.
* compiled design, and sets the vvp_out to the descriptor.
*/
extern FILE* vvp_out;
@ -244,6 +244,9 @@ extern unsigned thread_count;
/*
* $Log: vvp_priv.h,v $
* Revision 1.43 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.42 2007/01/17 04:39:18 steve
* Remove dead code related to memories.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: vvp_process.c,v 1.131 2007/02/26 01:51:40 steve Exp $"
#ident "$Id: vvp_process.c,v 1.132 2007/02/26 19:49:50 steve Exp $"
#endif
# include "vvp_priv.h"
@ -1304,7 +1304,7 @@ static int show_stmt_while(ivl_statement_t net, ivl_scope_t sscope)
rc += show_statement(ivl_stmt_sub_stmt(net), sscope);
/* This is the bottom of the loop. branch to the top where the
test is repeased, and also draw the out label. */
test is repeated, and also draw the out label. */
fprintf(vvp_out, " %%jmp T_%d.%d;\n", thread_count, top_label);
fprintf(vvp_out, "T_%d.%d ;\n", thread_count, out_label);
clear_expression_lookaside();
@ -1551,6 +1551,9 @@ int draw_func_definition(ivl_scope_t scope)
/*
* $Log: vvp_process.c,v $
* Revision 1.132 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.131 2007/02/26 01:51:40 steve
* Prevent lost of width while calculation address.
*

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: vvp_scope.c,v 1.152 2007/01/17 04:39:18 steve Exp $"
#ident "$Id: vvp_scope.c,v 1.153 2007/02/26 19:49:50 steve Exp $"
#endif
# include "vvp_priv.h"
@ -47,7 +47,7 @@ static struct vvp_nexus_data*new_nexus_data()
}
/*
* Escape non-symbol chararacters in ids, and quotes in strings.
* Escape non-symbol characters in ids, and quotes in strings.
*/
inline static char hex_digit(unsigned i)
@ -2352,6 +2352,9 @@ int draw_scope(ivl_scope_t net, ivl_scope_t parent)
/*
* $Log: vvp_scope.c,v $
* Revision 1.153 2007/02/26 19:49:50 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.152 2007/01/17 04:39:18 steve
* Remove dead code related to memories.
*

View File

@ -75,7 +75,7 @@ AC_SUBST(file64_support)
# $host
# Compiler option for position independent code, needed whan making shared objects.
# Compiler option for position independent code, needed when making shared objects.
AX_C_PICFLAG
AX_LD_EXTRALIBS

View File

@ -19,14 +19,14 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
* ---
* You should also have recieved a copy of the Picture Elements
* You should also have received a copy of the Picture Elements
* Binary Software License offer along with the source. This offer
* allows you to obtain the right to redistribute the software in
* binary (compiled) form. If you have not received it, contact
* Picture Elements, Inc., 777 Panoramic Way, Berkeley, CA 94704.
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: vpi_memory.c,v 1.3 2002/08/12 01:35:05 steve Exp $"
#ident "$Id: vpi_memory.c,v 1.4 2007/02/26 19:49:51 steve Exp $"
#endif
# include "vpi_priv.h"
@ -201,6 +201,9 @@ vpiHandle vpip_make_memory(struct __vpiMemory*ref, const char*name,
}
/*
* $Log: vpi_memory.c,v $
* Revision 1.4 2007/02/26 19:49:51 steve
* Spelling fixes (larry doolittle)
*
* Revision 1.3 2002/08/12 01:35:05 steve
* conditional ident string using autoconfig.
*