From c4a70a8cc32e3eefca678d2d0ed569078423f994 Mon Sep 17 00:00:00 2001 From: Andrew Zonenberg Date: Mon, 4 Sep 2017 21:49:56 -0700 Subject: Fixed typo in comment. Fixed bug where extract_counter would create up counters when it meant to create down counters. --- passes/techmap/extract_counter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'passes/techmap/extract_counter.cc') diff --git a/passes/techmap/extract_counter.cc b/passes/techmap/extract_counter.cc index 540b1593d..de374ab2b 100644 --- a/passes/techmap/extract_counter.cc +++ b/passes/techmap/extract_counter.cc @@ -424,12 +424,12 @@ void counter_worker( cell->setPort("\\CLK", extract.clk); cell->setPort("\\OUT", extract.outsig); - //Hook up hard-wired ports (for now CE and up/=down are not supported), default to no parallel output + //Hook up hard-wired ports (for now CE and up/down are not supported), default to no parallel output cell->setParam("\\HAS_POUT", RTLIL::Const(0)); cell->setParam("\\HAS_CE", RTLIL::Const(0)); cell->setParam("\\DIRECTION", RTLIL::Const("DOWN")); cell->setPort("\\CE", RTLIL::Const(1)); - cell->setPort("\\UP", RTLIL::Const(1)); + cell->setPort("\\UP", RTLIL::Const(0)); //Hook up any parallel outputs for(auto load : extract.pouts) -- cgit v1.2.3