Added support for ":" as comment symbol after ;-parsing

This commit is contained in:
Clifford Wolf 2015-10-23 20:08:33 +02:00
parent 15a67392f1
commit 281a033e92
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ void Pass::call(RTLIL::Design *design, std::string command)
void Pass::call(RTLIL::Design *design, std::vector<std::string> args)
{
if (args.size() == 0 || args[0][0] == '#')
if (args.size() == 0 || args[0][0] == '#' || args[0][0] == ':')
return;
if (echo_mode) {