can somebody help me to know a vert efficient algorithm in dividing more than 32 bytes of number?
e.g.
65534.99/2326.84=28.1648029
=>6553499/232684 =281648029
=>63 FF 9B/03 8C EC=10 C9 9B 9D
how could that be?
my algo is that use shifts and subs but in a bitwise manner
i want to divide byte by byte and not bit by bit