To implement a program that calculates simple interest.
The program to compute the simple interest and its equivalent low-level instructions executed by the hardware. The low-level instructions used are:
assign | It assigns a value to a variable. |
div | It divides the values contained in two registers and puts the result in the first register. |
in | It reads the input from the user and stores it in a variable. |
load | It loads a value of a global or local variable to the given register. |
mul | It multiplies the values contained in two registers and puts the result in the first register. |
out | It prints the output value to the screen. |
store | It stores the value from the given register to the global or local variable. |
exit | Signifies the end of program |