aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.h
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2021-02-23 16:48:29 +0100
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-03-08 20:16:29 +0100
commit89c74ffd7189d4898feb476ff70376385d516eb2 (patch)
tree89b1c5f786bc79da9e48ed59e8a33f66088ea523 /frontends/ast/ast.h
parent4e03865d5bf3fafe0bd3735c88431675d53d2663 (diff)
downloadyosys-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.h2
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;
}