Spelling fixes

comments, documentation, a variable name, and a couple of messages
This commit is contained in:
Larry Doolittle 2008-06-24 08:46:16 -07:00 committed by Stephen Williams
parent 27cdd27889
commit 3ec8a867db
9 changed files with 12 additions and 12 deletions

View File

@ -1158,7 +1158,7 @@ void PGModule::elaborate_mod_(Design*des, Module*rmod, NetScope*scope) const
/* Input to module. elaborate the expression to /* Input to module. elaborate the expression to
the desired width. If this in an instance the desired width. If this in an instance
array, then let the net determine it's own array, then let the net determine its own
width. We use that, then, to decide how to hook width. We use that, then, to decide how to hook
it up. it up.
@ -2954,7 +2954,7 @@ NetForce* PForce::elaborate(Design*des, NetScope*scope) const
dev = new NetForce(lval, rexp); dev = new NetForce(lval, rexp);
if (debug_elaborate) { if (debug_elaborate) {
cerr << get_fileline() << ": debug: ELaborate force," cerr << get_fileline() << ": debug: Elaborate force,"
<< " lval width=" << lval->lwidth() << " lval width=" << lval->lwidth()
<< " rval width=" << rexp->expr_width() << " rval width=" << rexp->expr_width()
<< " rval=" << *rexp << " rval=" << *rexp

View File

@ -8,6 +8,6 @@
# sh scripts/CREATE_VERSION.sh # sh scripts/CREATE_VERSION.sh
# #
echo "Building verion.h with git describe" echo "Building version.h with git describe"
tmp=`git describe | sed -e 's;\(.*\);#define VERSION_TAG "\1";'` tmp=`git describe | sed -e 's;\(.*\);#define VERSION_TAG "\1";'`
echo "$tmp" > version.h echo "$tmp" > version.h

View File

@ -1946,7 +1946,7 @@ void dll_target::lpm_mux(const NetMux*net)
{ {
ivl_lpm_t obj = new struct ivl_lpm_s; ivl_lpm_t obj = new struct ivl_lpm_s;
obj->type = IVL_LPM_MUX; obj->type = IVL_LPM_MUX;
obj->name = net->name(); // The NetMux perallocates its name. obj->name = net->name(); // The NetMux permallocates its name.
obj->scope = find_scope(des_, net->scope()); obj->scope = find_scope(des_, net->scope());
assert(obj->scope); assert(obj->scope);

View File

@ -160,7 +160,7 @@ device pins are connected.
.SH EXAMPLES .SH EXAMPLES
.TB 8 .TB 8
.I COMPILING WITH XILINX FOUNDATION/iSE .I COMPILING WITH XILINX FOUNDATION/ISE
Compile a single-file design with command line tools like so: Compile a single-file design with command line tools like so:
.nf .nf

View File

@ -802,7 +802,7 @@ syntax is:
The <symbol> is the label for a variable array, and the <number> is The <symbol> is the label for a variable array, and the <number> is
the canonical word index as an unsigned integer. The second form the canonical word index as an unsigned integer. The second form
retrives the index from thread space (<width> bits starting at <base>). retrieves the index from thread space (<width> bits starting at <base>).
* The &PV<> argument * The &PV<> argument

View File

@ -43,7 +43,7 @@
* *
* This class also implements the NMOS device, which is the same as * This class also implements the NMOS device, which is the same as
* the PMOS device, but the Control input inverted. The enable_invert * the PMOS device, but the Control input inverted. The enable_invert
* flag to the costructor activates this invertion. * flag to the constructor activates this inversion.
*/ */
class vvp_fun_pmos_ : public vvp_net_fun_t { class vvp_fun_pmos_ : public vvp_net_fun_t {

View File

@ -474,7 +474,7 @@ part. If any bit of the desired value is outside the vector, then that
bit is set to X. bit is set to X.
The index register 1 is interpreted as a signed value. Even though the The index register 1 is interpreted as a signed value. Even though the
address is cannonical (from 0 to the width of the signal) the value in address is canonical (from 0 to the width of the signal) the value in
index register 1 may be <0 or >=wid. The load instruction handles index register 1 may be <0 or >=wid. The load instruction handles
filling in the out-of-bounds bits with x. filling in the out-of-bounds bits with x.

View File

@ -780,7 +780,7 @@ void schedule_simulate(void)
ctim->rwsync = 0; ctim->rwsync = 0;
/* If out of rw events, then run the rosync /* If out of rw events, then run the rosync
events and delete this timestep. This also events and delete this time step. This also
deletes threads as needed. */ deletes threads as needed. */
if (ctim->active == 0) { if (ctim->active == 0) {
run_rosync(ctim); run_rosync(ctim);

View File

@ -357,11 +357,11 @@ class vvp_island_tran : public vvp_island {
void vvp_island_tran::run_island() void vvp_island_tran::run_island()
{ {
// Test to see if any of the branches are enabled. // Test to see if any of the branches are enabled.
bool runable = false; bool runnable = false;
for (vvp_island_branch*cur = branches_ ; cur ; cur = cur->next_branch) { for (vvp_island_branch*cur = branches_ ; cur ; cur = cur->next_branch) {
runable |= cur->run_test_enabled(); runnable |= cur->run_test_enabled();
} }
if (runable == false) if (runnable == false)
return; return;
for (vvp_island_branch*cur = branches_ ; cur ; cur = cur->next_branch) for (vvp_island_branch*cur = branches_ ; cur ; cur = cur->next_branch)