Displaying 1 result from an estimated 1 matches for "writedec_common".
2009 Mar 17
1
[PATCH 1/1] CORE/writedec: Fix overflow and redeclaration
...there's a preferred way to do what this function provides, let
me know. Was the writechr in there on purpose to prevent the use of
this function?
diff --git a/core/writedec.inc b/core/writedec.inc
index 10bf7ba..6101aeb 100644
--- a/core/writedec.inc
+++ b/core/writedec.inc
@@ -37,7 +37,8 @@ writedec_common:
xor cx,cx ; Number of digits
.cloop:
- div ebx
+ mov edx,0 ; Zero out high part
+ div ebx ; unsigned divide edx:eax/ebx
inc cx
push dx
and eax,eax...