Added support for "always @(*)"
authorClifford Wolf <clifford@clifford.at>
Wed, 16 Jan 2013 16:32:11 +0000 (17:32 +0100)
committerClifford Wolf <clifford@clifford.at>
Wed, 16 Jan 2013 16:32:11 +0000 (17:32 +0100)
README
frontends/verilog/parser.y

diff --git a/README b/README
index 13591693f1d4b76daa6288c8eeaa25489a2cd955..5d78206d86180c37135c9178a5641ca79c3efe0c 100644 (file)
--- a/README
+++ b/README
@@ -74,7 +74,7 @@ or using a simple synthesis script:
        proc; opt; techmap; opt
        write_verilog synth.v
 
-       $ ././yosys synth.ys
+       $ ./yosys synth.ys
 
 It is also possible to only have the synthesis commands but not the read/write
 commands in the synthesis script:
index 7c12bd565420c61a22e8eec71fb85264d0e838e3..010af478775a2b4590f89eacde689bb4fe47c275 100644 (file)
@@ -616,6 +616,9 @@ always_stmt:
 
 always_cond:
        '@' '(' always_events ')' |
+       '@' '(' '*' ')' |
+       '@' ATTR_BEGIN ')' |
+       '@' '(' ATTR_END |
        '@' '*' |
        /* empty */;