bufif enable is LOGIC.

This commit is contained in:
steve 2005-07-15 19:22:52 +00:00
parent 9a16e030b5
commit 4cbffc6b77
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ifdef HAVE_CVS_IDENT #ifdef HAVE_CVS_IDENT
#ident "$Id: cprop.cc,v 1.53 2005/05/15 04:44:30 steve Exp $" #ident "$Id: cprop.cc,v 1.54 2005/07/15 19:22:52 steve Exp $"
#endif #endif
# include "config.h" # include "config.h"
@ -799,6 +799,7 @@ void cprop_functor::lpm_mux(Design*des, NetMux*obj)
NetNet*rsig = new NetNet(scope, scope->local_symbol(), NetNet*rsig = new NetNet(scope, scope->local_symbol(),
NetNet::WIRE, obj->width()); NetNet::WIRE, obj->width());
rsig->local_flag(true); rsig->local_flag(true);
rsig->data_type(IVL_VT_LOGIC);
connect(tmp->pin(2), rsig->pin(0)); connect(tmp->pin(2), rsig->pin(0));
} }
@ -955,6 +956,9 @@ void cprop(Design*des)
/* /*
* $Log: cprop.cc,v $ * $Log: cprop.cc,v $
* Revision 1.54 2005/07/15 19:22:52 steve
* bufif enable is LOGIC.
*
* Revision 1.53 2005/05/15 04:44:30 steve * Revision 1.53 2005/05/15 04:44:30 steve
* Disable obsolete logic constant fixup code. * Disable obsolete logic constant fixup code.
* *