mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 17:15:33 +00:00
Spell check (by Larry Doolittle)
This commit is contained in:
parent
80910d13a6
commit
84bf862f7c
63 changed files with 220 additions and 220 deletions
|
@ -217,7 +217,7 @@ int main(int argc, char **argv)
|
|||
printf(" print version information and exit\n");
|
||||
printf("\n");
|
||||
printf("The option -S is an shortcut for calling the \"synth\" command, a default\n");
|
||||
printf("script for transforming the verilog input to a gate-level netlist. For example:\n");
|
||||
printf("script for transforming the Verilog input to a gate-level netlist. For example:\n");
|
||||
printf("\n");
|
||||
printf(" yosys -o output.blif -S input.v\n");
|
||||
printf("\n");
|
||||
|
|
|
@ -145,7 +145,7 @@ std::string cover_list_worker(std::string prefix, std::string first, T... rest)
|
|||
// ------------------------------------------------------------
|
||||
|
||||
// simple timer for performance measurements
|
||||
// toggle the '#if 1' to get a baseline for the perormance penalty added by the measurement
|
||||
// toggle the '#if 1' to get a baseline for the performance penalty added by the measurement
|
||||
struct PerformanceTimer
|
||||
{
|
||||
#if 1
|
||||
|
|
|
@ -199,7 +199,7 @@ namespace RTLIL
|
|||
bool operator==(IdString rhs) const { return index_ == rhs.index_; }
|
||||
bool operator!=(IdString rhs) const { return index_ != rhs.index_; }
|
||||
|
||||
// The methods below are just convinience functions for better compatibility with std::string.
|
||||
// The methods below are just convenience functions for better compatibility with std::string.
|
||||
|
||||
bool operator==(const std::string &rhs) const { return str() == rhs; }
|
||||
bool operator!=(const std::string &rhs) const { return str() != rhs; }
|
||||
|
|
|
@ -596,7 +596,7 @@ struct TclPass : public Pass {
|
|||
log("The tcl command 'yosys -import' can be used to import all yosys\n");
|
||||
log("commands directly as tcl commands to the tcl shell. The yosys\n");
|
||||
log("command 'proc' is wrapped using the tcl command 'procs' in order\n");
|
||||
log("to avoid a name collision with the tcl builting command 'proc'.\n");
|
||||
log("to avoid a name collision with the tcl builtin command 'proc'.\n");
|
||||
log("\n");
|
||||
}
|
||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue