System Software – SIC/XE Program to set ALPHA=GAMMA*BETA-9 using Register Operation

Problem Statement

Write a sequence of instructions for SIC/XE to set ALPHA=GAMMA*BETA-9 using register operation.

Solution

Line Number(ac)CodeDescription
1LDA GAMMA 
2MUL BETA 
3SUB 9 
4STA ALPHA