Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 297 Bytes

README.md

File metadata and controls

4 lines (3 loc) · 297 Bytes

long-division

This project implements a variant of a division algorithm that can be used with CPUs that don't have native support for division operation.

It performs division in iterative way using only bit shifts (for multiplication and division by 2) and addition and subtraction operations.