3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-03 05:47:02 +00:00

dump: add --sorted flag

(cherry picked from commit ceb8b328ef)
This commit is contained in:
Emil J. Tywoniak 2025-04-08 19:01:12 +02:00
parent 8eb48fe446
commit 2fbf519f59
2 changed files with 24 additions and 7 deletions

View file

@ -42,8 +42,8 @@ namespace RTLIL_BACKEND {
void dump_proc_sync(std::ostream &f, std::string indent, const RTLIL::SyncRule *sy);
void dump_proc(std::ostream &f, std::string indent, const RTLIL::Process *proc);
void dump_conn(std::ostream &f, std::string indent, const RTLIL::SigSpec &left, const RTLIL::SigSpec &right);
void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false);
void dump_design(std::ostream &f, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false);
void dump_module(std::ostream &f, std::string indent, RTLIL::Module *module, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false, bool flag_sorted = false);
void dump_design(std::ostream &f, RTLIL::Design *design, bool only_selected, bool flag_m = true, bool flag_n = false, bool flag_sorted = false);
}
YOSYS_NAMESPACE_END