From 13bb76710838956e5932396498303638fb1a3b6f Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Sun, 24 Oct 2010 17:15:41 -0400 Subject: [PATCH] core/writedec: Remove writechr; fix overflow in .cloop writechr is found in other files and this prevents a compile error. --- core/writedec.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/writedec.inc b/core/writedec.inc index bfac099..19e4796 100644 --- a/core/writedec.inc +++ b/core/writedec.inc @@ -37,6 +37,7 @@ writedec_common: xor cx,cx ; Number of digits .cloop: + mov edx,0 div ebx inc cx push dx @@ -53,5 +54,5 @@ writedec_common: popad ret -writechr: - ret +; writechr: +; ret -- 2.7.4