diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-02-23 16:48:29 +0100 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-03-08 20:16:29 +0100 |
commit | 89c74ffd7189d4898feb476ff70376385d516eb2 (patch) | |
tree | 89b1c5f786bc79da9e48ed59e8a33f66088ea523 /frontends/ast/ast.cc | |
parent | 4e03865d5bf3fafe0bd3735c88431675d53d2663 (diff) | |
download | yosys-89c74ffd7189d4898feb476ff70376385d516eb2.tar.gz yosys-89c74ffd7189d4898feb476ff70376385d516eb2.tar.bz2 yosys-89c74ffd7189d4898feb476ff70376385d516eb2.zip |
verilog: Use proc memory writes in the frontend.
Diffstat (limited to 'frontends/ast/ast.cc')
-rw-r--r-- | frontends/ast/ast.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index af5e326ad..3b6319071 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -54,6 +54,8 @@ namespace AST_INTERNAL { AstNode *current_always, *current_top_block, *current_block, *current_block_child; AstModule *current_module; bool current_always_clocked; + dict<std::string, int> current_memwr_count; + dict<std::string, pool<int>> current_memwr_visible; } // convert node types to string |