3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +00:00

Added Pass:call_newsel API

This commit is contained in:
Clifford Wolf 2013-12-02 12:17:04 +01:00
parent 905eac04f1
commit a66ca0472a
2 changed files with 27 additions and 0 deletions

View file

@ -55,6 +55,9 @@ struct Pass
static void call(RTLIL::Design *design, std::string command);
static void call(RTLIL::Design *design, std::vector<std::string> args);
static void call_newsel(RTLIL::Design *design, std::string command);
static void call_newsel(RTLIL::Design *design, std::vector<std::string> args);
static void init_register();
static void done_register();
};