From 40d9b5853b2849c3bf7e2157a4b4c6b798b043d5 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 23 Sep 2012 18:34:10 -0700 Subject: Testing GIA with time manager. --- src/misc/tim/timMan.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/misc/tim/timMan.c') diff --git a/src/misc/tim/timMan.c b/src/misc/tim/timMan.c index c177a707..6aa5034a 100644 --- a/src/misc/tim/timMan.c +++ b/src/misc/tim/timMan.c @@ -186,7 +186,9 @@ void Tim_ManPrint( Tim_Man_t * p ) Tim_Obj_t * pObj, * pPrev; float * pTable; int i, j, k, TableX, TableY; - printf( "TIMING INFORMATION:\n" ); + if ( p == NULL ) + return; + printf( "TIMING MANAGER:\n" ); // print CI info pPrev = p->pCis; @@ -214,7 +216,10 @@ void Tim_ManPrint( Tim_Man_t * p ) if ( Tim_ManBoxNum(p) > 0 ) Tim_ManForEachBox( p, pBox, i ) { - printf( "*** Box %5d : Ins = %4d. Outs = %4d. DelayTable = %4d\n", i, pBox->nInputs, pBox->nOutputs, pBox->iDelayTable ); + printf( "*** Box %5d : I =%4d. O =%4d. I1 =%6d. O1 =%6d. Table =%4d\n", + i, pBox->nInputs, pBox->nOutputs, + Tim_ManBoxInputFirst(p, i), Tim_ManBoxOutputFirst(p, i), + pBox->iDelayTable ); // print box inputs pPrev = Tim_ManBoxInput( p, pBox, 0 ); -- cgit v1.2.3