mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-20 06:05:50 +00:00
functinoal: twines
This commit is contained in:
parent
5b5e7ce771
commit
d8e09f4e0c
4 changed files with 56 additions and 47 deletions
|
|
@ -146,7 +146,7 @@ struct FunctionalTestGeneric : public Pass
|
|||
log("Dumping module `%s'.\n", module->name);
|
||||
auto fir = Functional::IR::from_module(module);
|
||||
for(auto node : fir)
|
||||
std::cout << design->twines.unescaped_str(node.name()) << " = " << node.to_string([](auto n) { return design->twines.unescaped_str(n.name()); }) << "\n";
|
||||
std::cout << design->twines.unescaped_str(node.name()) << " = " << node.to_string([](auto n) { return n.design->twines.unescaped_str(n.name()); }) << "\n";
|
||||
for(auto output : fir.all_outputs())
|
||||
std::cout << design->twines.unescaped_str(output->kind) << " " << design->twines.unescaped_str(output->name) << " = " << design->twines.unescaped_str(output->value().name()) << "\n";
|
||||
for(auto state : fir.all_states())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue