diff --git a/rtl/emx/sysutils.pp b/rtl/emx/sysutils.pp index 06ccc0a087..de651be89b 100644 --- a/rtl/emx/sysutils.pp +++ b/rtl/emx/sysutils.pp @@ -863,8 +863,8 @@ asm mov ax, cx stosw xor eax, eax - mov al, dl - imul 10 + mov al, 10 + mul dl shl eax, 16 mov al, dh stosd @@ -987,7 +987,10 @@ end. { $Log$ - Revision 1.6 2003-06-06 23:31:55 hajny + Revision 1.7 2003-06-06 23:34:08 hajny + * better fix for bug 2518 + + Revision 1.6 2003/06/06 23:31:55 hajny * fix for bug 2518 applied to EMX as well Revision 1.5 2003/04/04 02:02:44 yuri diff --git a/rtl/os2/sysutils.pp b/rtl/os2/sysutils.pp index 3ae6794ce7..5e50d3fe56 100644 --- a/rtl/os2/sysutils.pp +++ b/rtl/os2/sysutils.pp @@ -863,8 +863,8 @@ asm mov ax, cx stosw xor eax, eax - mov al, dl - imul 10 + mov al, 10 + mul dl shl eax, 16 mov al, dh stosd @@ -987,7 +987,10 @@ end. { $Log$ - Revision 1.28 2003-06-06 23:31:17 hajny + Revision 1.29 2003-06-06 23:34:40 hajny + * better fix for bug 2518 + + Revision 1.28 2003/06/06 23:31:17 hajny * fix for bug 2518 applied to OS/2 as well Revision 1.27 2003/04/01 15:57:41 peter