From a1cfabafb844bd314fed468c845fb01729c9f0be Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 4 Nov 2000 01:53:24 +0000 Subject: [PATCH] Use the %m string properly. --- examples/sqrt.vl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sqrt.vl b/examples/sqrt.vl index 233eeeeb0..704f7d1b1 100644 --- a/examples/sqrt.vl +++ b/examples/sqrt.vl @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: sqrt.vl,v 1.2 2000/09/23 17:46:11 steve Exp $" + * $Id: sqrt.vl,v 1.3 2000/11/04 01:53:24 steve Exp $" */ /* @@ -133,7 +133,7 @@ module main; initial begin clk = 0; reset = 1; - $monitor($time,,"%m = %b", root.acc, root.acc); + $monitor($time,,"%m.acc = %b", root.acc); #100 value = 63; reset = 0; end