diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-21 14:49:18 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-21 14:49:18 -0700 |
commit | 42a6e0b0b96208c5b0d79da5d8e31e9306a8aeae (patch) | |
tree | 7424614f63ebff3d26712b8f9d947f68f6411d9e /frontends/ast/ast.h | |
parent | caec7f9d2c87e3978c51d0a4171b24cc4b363885 (diff) | |
parent | d38f0c1a96c036df4ef67ad2f945dd229e1c3b8e (diff) | |
download | yosys-42a6e0b0b96208c5b0d79da5d8e31e9306a8aeae.tar.gz yosys-42a6e0b0b96208c5b0d79da5d8e31e9306a8aeae.tar.bz2 yosys-42a6e0b0b96208c5b0d79da5d8e31e9306a8aeae.zip |
Merge remote-tracking branch 'origin/clifford/libwb' into xaig
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 610e00fbf..281cbe086 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -283,13 +283,13 @@ namespace AST // process an AST tree (ast must point to an AST_DESIGN node) and generate RTLIL code void process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump_ast2, bool no_dump_ptr, bool dump_vlog1, bool dump_vlog2, bool dump_rtlil, bool nolatches, bool nomeminit, - bool nomem2reg, bool mem2reg, bool lib, bool wb, bool noopt, bool icells, bool nooverwrite, bool overwrite, bool defer, bool autowire); + bool nomem2reg, bool mem2reg, bool noblackbox, bool lib, bool nowb, bool noopt, bool icells, bool nooverwrite, bool overwrite, bool defer, bool autowire); // parametric modules are supported directly by the AST library // therefore we need our own derivate of RTLIL::Module with overloaded virtual functions struct AstModule : RTLIL::Module { AstNode *ast; - bool nolatches, nomeminit, nomem2reg, mem2reg, lib, wb, noopt, icells, autowire; + bool nolatches, nomeminit, nomem2reg, mem2reg, noblackbox, lib, nowb, noopt, icells, autowire; ~AstModule() YS_OVERRIDE; RTLIL::IdString derive(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Const> parameters, bool mayfail) YS_OVERRIDE; RTLIL::IdString derive(RTLIL::Design *design, dict<RTLIL::IdString, RTLIL::Const> parameters, dict<RTLIL::IdString, RTLIL::Module*> interfaces, dict<RTLIL::IdString, RTLIL::IdString> modports, bool mayfail) YS_OVERRIDE; |