3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-20 21:03:40 +00:00

Added "plugin" command

This commit is contained in:
Clifford Wolf 2014-08-22 13:58:36 +02:00
parent 752650a062
commit a3494fa9ed
6 changed files with 136 additions and 10 deletions

View file

@ -132,6 +132,11 @@ extern const char *yosys_version_str;
extern std::map<std::string, RTLIL::Design*> saved_designs;
extern std::vector<RTLIL::Design*> pushed_designs;
// from passes/cmds/pluginc.cc
extern std::map<std::string, void*> loaded_plugins;
extern std::map<std::string, std::string> loaded_plugin_aliases;
void load_plugin(std::string filename, std::vector<std::string> aliases);
YOSYS_NAMESPACE_END
#endif