diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2007-02-11 08:01:00 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2007-02-11 08:01:00 -0800 |
commit | 5f3e4c0fe21ba5e24db0c187a616a28afc0dabae (patch) | |
tree | 30a84432ebcd370992d24ffced01ac0034072f30 /src/aig | |
parent | b9e0c95b690cf363f99b182ba8e7688aef091d95 (diff) | |
download | abc-5f3e4c0fe21ba5e24db0c187a616a28afc0dabae.tar.gz abc-5f3e4c0fe21ba5e24db0c187a616a28afc0dabae.tar.bz2 abc-5f3e4c0fe21ba5e24db0c187a616a28afc0dabae.zip |
Version abc70211
Diffstat (limited to 'src/aig')
-rw-r--r-- | src/aig/hop/hopUtil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/hop/hopUtil.c b/src/aig/hop/hopUtil.c index a49e8397..9b5bf686 100644 --- a/src/aig/hop/hopUtil.c +++ b/src/aig/hop/hopUtil.c @@ -351,7 +351,7 @@ void Hop_ObjPrintVerilog( FILE * pFile, Hop_Obj_t * pObj, Vec_Vec_t * vLevels, i // constant case if ( Hop_ObjIsConst1(pObj) ) { - fprintf( pFile, "%d", !fCompl ); + fprintf( pFile, "1\'b%d", !fCompl ); return; } // PI case |