diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-07-31 10:40:09 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-07-31 10:40:09 +0200 |
commit | 8d6d5c30d9f39ce5b15d1bd3f3a528b38f2f9f9c (patch) | |
tree | 8bfd4d9dba657a0c461220838fbf919f45d236b3 /frontends/ast/ast.h | |
parent | 3860c9a9f23104bd54e0000b74624e45c77a8ab3 (diff) | |
download | yosys-8d6d5c30d9f39ce5b15d1bd3f3a528b38f2f9f9c.tar.gz yosys-8d6d5c30d9f39ce5b15d1bd3f3a528b38f2f9f9c.tar.bz2 yosys-8d6d5c30d9f39ce5b15d1bd3f3a528b38f2f9f9c.zip |
Added WORDS parameter to $meminit
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 28959d5d9..44315d493 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -210,7 +210,7 @@ namespace AST // simplify() creates a simpler AST by unrolling for-loops, expanding generate blocks, etc. // it also sets the id2ast pointers so that identifier lookups are fast in genRTLIL() bool simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, int width_hint, bool sign_hint, bool in_param); - AstNode *readmem(bool is_readmemh, std::string mem_filename, AstNode *memory, int start_addr, int finish_addr); + AstNode *readmem(bool is_readmemh, std::string mem_filename, AstNode *memory, int start_addr, int finish_addr, bool unconditional_init); void expand_genblock(std::string index_var, std::string prefix, std::map<std::string, std::string> &name_map); void replace_ids(const std::string &prefix, const std::map<std::string, std::string> &rules); void mem2reg_as_needed_pass1(dict<AstNode*, pool<std::string>> &mem2reg_places, |