From 6b71345142241e6f7d42bd630f810694ce06f3b9 Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 18 Mar 2003 01:32:33 +0000 Subject: [PATCH] Add the q edge flag. --- vvp/udp.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/vvp/udp.cc b/vvp/udp.cc index 2cd1acf34..a3e8e817d 100644 --- a/vvp/udp.cc +++ b/vvp/udp.cc @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: udp.cc,v 1.18 2003/02/09 23:33:26 steve Exp $" +#ident "$Id: udp.cc,v 1.19 2003/03/18 01:32:33 steve Exp $" #endif #include "udp.h" @@ -281,6 +281,11 @@ void vvp_udp_s::compile_row_(udp_table_entry_t row, char *rchr) n1x = 1; // 1 not allowed edge = EDGE_0; break; + case 'q': + n0 = 1; // 0 not allowed + n1x = 1; // 1 not allowed + edge = EDGE_0 | EDGE_1; + break; case 'M': n0 = 1; // 0 not allowed n1x = 1; // 1 not allowed @@ -350,6 +355,9 @@ void vvp_udp_s::compile_row_(udp_table_entry_t row, char *rchr) /* * $Log: udp.cc,v $ + * Revision 1.19 2003/03/18 01:32:33 steve + * Add the q edge flag. + * * Revision 1.18 2003/02/09 23:33:26 steve * Spelling fixes. *