I'm trying to multiply two big numbers in x86 assembly, for example two numbers 100 bytes long, and I want to do this in C code.
I know there are simple ways to do the multiplication, such as adding in a loop, bit-shifting, table based methods and others.
However my main problems are moving the numbers to registers and multiplying them and showing the result . So if you could help me, that would be great.