A Simple assembly Calculator
This is a personal project where i wanted to work on a simple assembly calculator
This calculator is simple meaning it can only perform non-floating point procedures (integers only)
Up to this point in development this calculator only performs two basic operations:
- Adding two non-floating point numbers
- Subtracting two non-floating point numbers
subtraction is performed through two's compliment of addition
--> to be added multiplication and devision with a remainder
*Note that all operation are performed through addition meanng multiplication will be repeated addition and division will be repeated subtraction that is adding a negative number_
Attached is the all in one zip