https://github.com/tusharmakkar08/alu-algorithms-implementation
Coding basic ALU operations and algorithms in Python
https://github.com/tusharmakkar08/alu-algorithms-implementation
Last synced: 4 months ago
JSON representation
Coding basic ALU operations and algorithms in Python
- Host: GitHub
- URL: https://github.com/tusharmakkar08/alu-algorithms-implementation
- Owner: tusharmakkar08
- Created: 2012-11-10T13:01:35.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-27T09:12:58.000Z (over 12 years ago)
- Last Synced: 2025-01-26T00:24:56.757Z (5 months ago)
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
This project is all about implementing and stimulating basic ALU algorithms in Python Language
The following CPU algorithms are implemented :
1- Addition and Subtraction using adders and subtractors
2- Multiplication using partial products
3- Division using successive subtraction and Newton Raphson Method
4- GCD using Euclid's Algorithm
5- All the logical operations using basic gates properties
6- Static Daisy Chain Algorithm
7- Rotating Daisy Chain Algorithm