diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | frontends/verilog/parser.y | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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: diff --git a/frontends/verilog/parser.y b/frontends/verilog/parser.y index 7c12bd565..010af4787 100644 --- a/frontends/verilog/parser.y +++ b/frontends/verilog/parser.y @@ -616,6 +616,9 @@ always_stmt: always_cond: '@' '(' always_events ')' | + '@' '(' '*' ')' | + '@' ATTR_BEGIN ')' | + '@' '(' ATTR_END | '@' '*' | /* empty */; |