Show all parts
Q1) Write an IAS program to compute the results of the following equation:
Q2) machine code instruction to transfer absolute value of 5
1. Write an IAS program to compute the results of the following equation: Y = 1+3+5+7+9 We have loaded the numbers into memory for you, Each integer takes up an entire 40-bit word, but each instruction plus its operand take up only 20 bits, so we have a left and right instruction per 40-bit memory location. and the value of Y into location 5 Assume when you begin that your constants are stored in order in memory locations 0, 1, 2, 3, and 4. Use memory location 5 for Y, which is initialized to 0. Your job is to fill in the table with the instructions needed to complete the task. Add each integer successively to the accumulator (referred to by the register name AC”). Assume the accumulator starts with the value 0 Store your instructions beginning in memory location6 left instruction (20 bits) right instruction (20 bits) 20 28 opcode (8 bits) address (12 bits) opcode (8 bits) address (12 bits) (b) Instruction word Remember that you have TWO instructions per word when it’s used to store instructions (a so-called “instruction word”), each 20 bits, comprising 8 bits of opcode and 12 bits of operand. The system divides up instruction words into Left and Right positions, so 10L represents the left 20 bits. It is read first, then 10R, then 11L and 11R and so on. To terminate the program, use a Jump command, but jump back to your own