diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-06-02 17:53:30 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-06-02 17:53:30 +0200 |
commit | 21d9251e52c2a1807306fd4067de0750e45465c0 (patch) | |
tree | 7e70e27d4acdbeddb2b30875acaad517274ad3bc /backends/ilang/ilang_backend.h | |
parent | 5f2c5f90178dbd5b26956d60881cab132a5982bd (diff) | |
download | yosys-21d9251e52c2a1807306fd4067de0750e45465c0.tar.gz yosys-21d9251e52c2a1807306fd4067de0750e45465c0.tar.bz2 yosys-21d9251e52c2a1807306fd4067de0750e45465c0.zip |
Added "dump" command (part ilang backend)
Diffstat (limited to 'backends/ilang/ilang_backend.h')
-rw-r--r-- | backends/ilang/ilang_backend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/ilang/ilang_backend.h b/backends/ilang/ilang_backend.h index e34c4e675..b9700970f 100644 --- a/backends/ilang/ilang_backend.h +++ b/backends/ilang/ilang_backend.h @@ -40,8 +40,8 @@ namespace ILANG_BACKEND { void dump_proc_sync(FILE *f, std::string indent, const RTLIL::SyncRule *sy); void dump_proc(FILE *f, std::string indent, const RTLIL::Process *proc); void dump_conn(FILE *f, std::string indent, const RTLIL::SigSpec &left, const RTLIL::SigSpec &right); - void dump_module(FILE *f, std::string indent, const RTLIL::Module *module); - void dump_design(FILE *f, const RTLIL::Design *design); + void dump_module(FILE *f, std::string indent, const RTLIL::Module *module, const RTLIL::Design *design, bool only_selected); + void dump_design(FILE *f, const RTLIL::Design *design, bool only_selected); } #endif |