mirror of https://github.com/YosysHQ/yosys.git
Added support for "always @(*)"
This commit is contained in:
parent
e8231ee46b
commit
6d1502b948
2
README
2
README
|
@ -74,7 +74,7 @@ or using a simple synthesis script:
|
||||||
proc; opt; techmap; opt
|
proc; opt; techmap; opt
|
||||||
write_verilog synth.v
|
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
|
It is also possible to only have the synthesis commands but not the read/write
|
||||||
commands in the synthesis script:
|
commands in the synthesis script:
|
||||||
|
|
|
@ -616,6 +616,9 @@ always_stmt:
|
||||||
|
|
||||||
always_cond:
|
always_cond:
|
||||||
'@' '(' always_events ')' |
|
'@' '(' always_events ')' |
|
||||||
|
'@' '(' '*' ')' |
|
||||||
|
'@' ATTR_BEGIN ')' |
|
||||||
|
'@' '(' ATTR_END |
|
||||||
'@' '*' |
|
'@' '*' |
|
||||||
/* empty */;
|
/* empty */;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue