From c30cd9afea01637e419ec28027021ef45fc2c453 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 21 Aug 2005 22:27:57 +0000 Subject: [PATCH] Display NOR gates. --- tgt-stub/stub.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tgt-stub/stub.c b/tgt-stub/stub.c index 88992a849..8b106b3d8 100644 --- a/tgt-stub/stub.c +++ b/tgt-stub/stub.c @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: stub.c,v 1.90 2004/10/04 01:10:57 steve Exp $" +#ident "$Id: stub.c,v 1.90.2.1 2005/08/21 22:27:57 steve Exp $" #endif # include "config.h" @@ -807,6 +807,10 @@ static void show_logic(ivl_net_logic_t net) name, ivl_nexus_name(ivl_logic_pin(net, 0))); break; + case IVL_LO_NOR: + fprintf(out, " nor %s (%s", name, + ivl_nexus_name(ivl_logic_pin(net, 0))); + break; case IVL_LO_OR: fprintf(out, " or %s (%s", name, ivl_nexus_name(ivl_logic_pin(net, 0))); @@ -822,7 +826,8 @@ static void show_logic(ivl_net_logic_t net) break; default: - fprintf(out, " unsupported gate %s (%s", name, + fprintf(out, " unsupported gate(%u) %s (%s", + ivl_logic_type(net), name, ivl_nexus_name(ivl_logic_pin(net, 0))); break; } @@ -953,6 +958,9 @@ int target_design(ivl_design_t des) /* * $Log: stub.c,v $ + * Revision 1.90.2.1 2005/08/21 22:27:57 steve + * Display NOR gates. + * * Revision 1.90 2004/10/04 01:10:57 steve * Clean up spurious trailing white space. *