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.h | |
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.h')
-rw-r--r-- | frontends/ast/ast.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 1c9a6ee47..1447bf568 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -381,6 +381,8 @@ namespace AST_INTERNAL extern AST::AstNode *current_always, *current_top_block, *current_block, *current_block_child; extern AST::AstModule *current_module; extern bool current_always_clocked; + extern dict<std::string, int> current_memwr_count; + extern dict<std::string, pool<int>> current_memwr_visible; struct LookaheadRewriter; struct ProcessGenerator; } |