Spelling fixes
This commit is contained in:
parent
70243b8163
commit
2d41a43ae1
|
|
@ -25,7 +25,7 @@ module top;
|
|||
pass = 1'b0;
|
||||
end
|
||||
|
||||
// A release of a currently unforced varaible should not change it.
|
||||
// A release of a currently unforced variable should not change it.
|
||||
val = 4'b0110;
|
||||
release val;
|
||||
if (val !== 4'b0110) begin
|
||||
|
|
@ -52,7 +52,7 @@ module top;
|
|||
pass = 1'b0;
|
||||
end
|
||||
|
||||
// A release of a currently unforced varaible should not change it.
|
||||
// A release of a currently unforced variable should not change it.
|
||||
pv_val = 4'b1001;
|
||||
release pv_val[1];
|
||||
if (pv_val !== 4'b1001) begin
|
||||
|
|
@ -79,7 +79,7 @@ module top;
|
|||
pass = 1'b0;
|
||||
end
|
||||
|
||||
// A release of a currently unforced varaible should not change it.
|
||||
// A release of a currently unforced variable should not change it.
|
||||
rval = 1.0;
|
||||
release rval;
|
||||
if (rval != 1.0) begin
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Check that it is possible to have a `output reg` in a UDP defintion
|
||||
// Check that it is possible to have a `output reg` in a UDP definition
|
||||
|
||||
module test;
|
||||
|
||||
|
|
|
|||
|
|
@ -1035,7 +1035,7 @@ class NetScope : public Definitions, public Attrib {
|
|||
inline TYPE type() const { return type_; }
|
||||
void print_type(std::ostream&) const;
|
||||
|
||||
// This provides a link to the variable initialisation process
|
||||
// This provides a link to the variable initialization process
|
||||
// for use when evaluating a constant function. Note this is
|
||||
// only used for static functions - the variable initialization
|
||||
// for automatic functions is included in the function definition.
|
||||
|
|
@ -1221,7 +1221,7 @@ class NetScope : public Definitions, public Attrib {
|
|||
bool is_annotatable;
|
||||
// Is this a localparam?
|
||||
bool local_flag;
|
||||
// Can it be overriden?
|
||||
// Can it be overridden?
|
||||
bool overridable = false;
|
||||
// Is it a type parameter
|
||||
bool type_flag = false;
|
||||
|
|
@ -3311,7 +3311,7 @@ class NetDisable : public NetProc {
|
|||
private:
|
||||
NetScope*target_;
|
||||
// If false all threads in the target_ scope are disabled. If true only
|
||||
// the closest thread in thread hierachy of the target_ scope is
|
||||
// the closest thread in thread hierarchy of the target_ scope is
|
||||
// disabled. The latter is used to implement flow control statements like
|
||||
// `return`.
|
||||
bool flow_control_;
|
||||
|
|
|
|||
Loading…
Reference in New Issue