// p1 points to a word in first large integer
// p2 points to a word in second large integer
__asm mov eax,dword ptr p1
__asm mul dword ptr p2
// upper 32 bits of product now in edx, lower in eax

Example 1: Inline assembly for Microsoft's Visual C++.

Back to Article