Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/omansak/nonrestoring-division-calculation

The division operation is carried away by assuming fractional numbers. The Non-Restoring division algorithm is shown below. Initially R is set equal to N and n is the data width. The operands are in two’s compliment form where MSB bit is the signed bit. In Non-Restoring divider, quotient take the digit set {-1,1}
https://github.com/omansak/nonrestoring-division-calculation

algorithm division nonrestoring

Last synced: 8 days ago
JSON representation

The division operation is carried away by assuming fractional numbers. The Non-Restoring division algorithm is shown below. Initially R is set equal to N and n is the data width. The operands are in two’s compliment form where MSB bit is the signed bit. In Non-Restoring divider, quotient take the digit set {-1,1}

Awesome Lists containing this project

README

        

# Non-Restoring Division Calculation
The division operation is carried away by assuming fractional numbers. The Non-Restoring division algorithm is shown below. Initially R is set equal to N and n is the data width. The operands are in two’s compliment form where MSB bit is the signed bit. In Non-Restoring divider, quotient take the digit set {-1,1}. At the output, a conversion is needed to get the actual output.

### Application
https://omansak.github.io/nonrestoring-division-calculation/

### Commands
- Install packages : `npm install`
- Run : `npm run serve`
- Deploy GH Pages : `npm run deploy`

Implementation Code (Javascript)


Credits