diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-11-12 23:04:27 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-11-12 23:04:27 -0800 |
commit | 53b2f056a124821e05e7b322054449d02f5848f8 (patch) | |
tree | 3823aa567759ecaa6b8d176290f2411f4c4491b7 /src | |
parent | 926b3adec1693408527ea6e067223c60596d7d1f (diff) | |
download | abc-53b2f056a124821e05e7b322054449d02f5848f8.tar.gz abc-53b2f056a124821e05e7b322054449d02f5848f8.tar.bz2 abc-53b2f056a124821e05e7b322054449d02f5848f8.zip |
Temporary debugging change.
Diffstat (limited to 'src')
-rw-r--r-- | src/map/if/ifDec16.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/if/ifDec16.c b/src/map/if/ifDec16.c index f2912c58..777cfa53 100644 --- a/src/map/if/ifDec16.c +++ b/src/map/if/ifDec16.c @@ -622,8 +622,10 @@ void If_CluInitTruthTables() for ( k = 0; k < CLU_WRD_MAX; k++ ) TruthAll[i][k] = ((k >> (i-6)) & 1) ? ~0 : 0; -// Extra_PrintHex( stdout, TruthAll[6], 8 ); printf( "\n" ); -// Extra_PrintHex( stdout, TruthAll[7], 8 ); printf( "\n" ); + for ( i = 0; i < 8; i++ ) + { + Extra_PrintHex( stdout, (unsigned *)TruthAll[i], 8 ); printf( "\n" ); + } } |