--- gforth/prim 2005/01/28 21:32:19 1.166 +++ gforth/prim 2005/01/29 13:31:51 1.168 @@ -857,7 +857,7 @@ DCell d = (DCell)n1 * (DCell)n2; #endif #ifdef BUGGY_LL_DIV DCell r = fmdiv(d,n3); -n4=DHI(r); +n4=DLO(r); #else /* assumes that the processor uses either floored or symmetric division */ n4 = d/n3; @@ -990,7 +990,7 @@ u3=DLO(r); #endif /* !defined(ASM_UM_SLASH_MOD) */ #else #ifdef ASM_UM_SLASH_MOD4 -ASM_UM_SLASH_MOD4(d1, n1, n2, n3); +ASM_UM_SLASH_MOD4(ud, u1, u2, u3); #else /* !defined(ASM_UM_SLASH_MOD4) */ u3 = ud/u1; u2 = ud%u1;