Dear freaks,
I am using the ATmega64A controller and I need to make a division with the faster (as possible) method.
======================
The division I need to make is :
x / 93 (x = 0 to 16384).
======================
As an example of a multiplication using bit shifts is
x *10 = (x << 3) + (x << 1)
I need something like this for my division.
Can anyone help me ?