Skip to content

Commit 56565a4

Browse files
committedSep 5, 2017
Fixed typo
1 parent ea75173 commit 56565a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎passes/techmap/recover_tff_counters.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ void recover_tff_counters_worker(
190190
auto counter = module->addCell(NEW_ID, "$__COUNT_");
191191
counter->setParam("\\RESET_MODE", RTLIL::Const("FIXME")); //not yet implemented
192192
counter->setParam("\\WIDTH", RTLIL::Const(count_width));
193-
counter->setParam("\\COUNT_TO", RTLIL::Const(pow(2, count_width) - 1);
193+
counter->setParam("\\COUNT_TO", RTLIL::Const(pow(2, count_width) - 1));
194194
counter->setParam("\\HAS_CE", RTLIL::Const(0));
195195
counter->setParam("\\HAS_POUT", RTLIL::Const(1));
196196
counter->setParam("\\DIRECTION", RTLIL::Const("DOWN"));

0 commit comments

Comments
 (0)
Please sign in to comment.