From 16ec4cb6854a15fdf9560ce368bdc045b4295cd2 Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 12 Jun 2007 02:23:40 +0000 Subject: [PATCH] displan pmos gates. --- tgt-stub/stub.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tgt-stub/stub.c b/tgt-stub/stub.c index 816d6bf87..e0cb3651d 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.147 2007/03/02 06:13:22 steve Exp $" +#ident "$Id: stub.c,v 1.148 2007/06/12 02:23:40 steve Exp $" #endif /* @@ -1231,6 +1231,9 @@ static void show_logic(ivl_net_logic_t net) case IVL_LO_OR: fprintf(out, " or %s", name); break; + case IVL_LO_PMOS: + fprintf(out, " pmos %s", name); + break; case IVL_LO_PULLDOWN: fprintf(out, " pulldown %s", name); break; @@ -1247,7 +1250,7 @@ static void show_logic(ivl_net_logic_t net) break; default: - fprintf(out, " unsupported gate %s", name); + fprintf(out, " unsupported gate %s", ivl_logic_type(net), name); break; } @@ -1491,6 +1494,9 @@ int target_design(ivl_design_t des) /* * $Log: stub.c,v $ + * Revision 1.148 2007/06/12 02:23:40 steve + * displan pmos gates. + * * Revision 1.147 2007/03/02 06:13:22 steve * Add support for edge sensitive spec paths. *