Hello,

I need to divide 500000 by my input
so 500000 / input Ex: 500000/145= 3448
Obviously this is a 20 bit number.
tried reducing to 50000, but I get stuck with a decimal, used :
input1 = 50000 / 145 '=344
output1= input1 >> 2 '=86

1) How do I combine these two numbers to create one?
2) maybe there is another and better way to do it ?

K