mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 01:54:10 +00:00
Added support for ":" as comment symbol after ;-parsing
This commit is contained in:
parent
15a67392f1
commit
281a033e92
|
@ -209,7 +209,7 @@ void Pass::call(RTLIL::Design *design, std::string command)
|
||||||
|
|
||||||
void Pass::call(RTLIL::Design *design, std::vector<std::string> args)
|
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;
|
return;
|
||||||
|
|
||||||
if (echo_mode) {
|
if (echo_mode) {
|
||||||
|
|
Loading…
Reference in a new issue