To implement a program that computes the given number is odd or even
The following program to compute given number is odd or even and its equivalent low-level instructions executed by the hardware. The low-level instructions used are:
Assign | It assigns a value to a variable |
load | It loads a value of a global or local variable to the given register |
store | It stores the value from the given register to the global or local variable |
out | It prints the output value to the screen. |
in | It reads the input from to user and stores in a variable |
rem | It performs division operation of the values contained in two registers and puts the remainder in the first register. |
eq | Check if the values in two registers are same. |
if_true | Checks if the condition evaluated to true. |
if_false | Checks if the condition evaluated to false. |
label | Is used to mark the position in the low-level instructions to enable jumping to the marked position. |
exit | Signifies the end of program |