3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 11:45:41 +00:00

address comments

This commit is contained in:
Stan Lee 2026-01-21 15:16:45 -08:00
parent f14eb4a7bb
commit f026cebaf6

View file

@ -82,7 +82,7 @@ struct RegRenamePass : public Pass {
log_error("No VCD file provided. Please provide a VCD file with the -vcd option.\n");
}
// Regex to match register output wires
// Regex to match registers to output wires
// .*_reg[NUMBER] or .*_reg, can match NUMBER and part before _reg
std::regex reg_regex("(.*)_reg(?:\\[(\\d+)\\])?$");
uint32_t count = 0;