Skip to content

Commit

Permalink
Comment-out assembly language code
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Feb 18, 2024
1 parent 61d8a07 commit c0996e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common/mpmath_c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,7 @@ MP *d2MP086(double x)
}
else
{
/*
__asm
{
mov dx, word ptr [x+6]
Expand Down Expand Up @@ -1003,6 +1004,7 @@ MP *d2MP086(double x)
mov word ptr Ans.Mant+2, dx
mov word ptr Ans.Mant, ax
}
*/
}
return &Ans;
}
Expand Down Expand Up @@ -1437,6 +1439,7 @@ MPmul086 ENDP
MP *MPmul086(MP x, MP y)
{
// TODO: implement
/*
__asm
{
xor eax, eax
Expand Down Expand Up @@ -1527,7 +1530,7 @@ MP *MPmul086(MP x, MP y)
mov word ptr Ans.Mant+2, dx
mov word ptr Ans.Mant, ax
}

*/
return &Ans;
}

Expand Down

0 comments on commit c0996e9

Please sign in to comment.