mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 10:35:38 +00:00
Docs: adding other macro command lists
Also updates `macro_commands.py` to skip empty lines, and moves comment stripping earlier in parsing.
This commit is contained in:
parent
6c8949cacc
commit
449135a9d4
8 changed files with 111 additions and 102 deletions
14
docs/source/code_examples/macro_commands/proc.ys
Normal file
14
docs/source/code_examples/macro_commands/proc.ys
Normal file
|
@ -0,0 +1,14 @@
|
|||
#start: passes in the most common order.
|
||||
#end: This replaces the processes
|
||||
proc_clean # removes empty branches and processes
|
||||
proc_rmdead # removes unreachable branches
|
||||
proc_prune
|
||||
proc_init # special handling of “initial” blocks
|
||||
proc_arst # identifies modeling of async resets
|
||||
proc_rom
|
||||
proc_mux # converts decision trees to multiplexer networks
|
||||
proc_dlatch
|
||||
proc_dff # extracts registers from processes
|
||||
proc_memwr
|
||||
proc_clean # this should remove all the processes, provided all went fine
|
||||
opt_expr -keepdc
|
Loading…
Add table
Add a link
Reference in a new issue