[SOLVED] ; P5 Assignment

$25

File Name: ;_P5_Assignment.zip
File Size: 141.3 KB

5/5 - (1 vote)

; P5 Assignment
; Author:
; Date:
; Email:
; Class:CS270
;
; Description: Implements the arithmetic, bitwise, and shift operations

;
; Begin reserved section: do not change ANYTHING in reserved section!

.ORIG x3000
BR Main

Functions .FILL IntAdd ; Address of IntAdd routine (option 0)
.FILL IntSub ; Address of IntSub routine (option 1)
.FILL IntMul ; Address of IntMul routine (option 2)
.FILL BinaryOr ; Address of BinaryOr routine (option 3)
.FILL LeftShift; Address of LeftShift routine(option 4)
.FILL RightShift ; Address of RightShift routine (option 5)

MainLEA R0,Functions ; The main routine calls one of the
LDR1,Option; subroutines below based on the value of
ADD R0,R0,R1 ; the Option parameter.
LDR R0,R0,0;
JSRR R0;
EndProg HALT ;

; Parameters and return values for all functions
Option.FILL #0 ; Which function to call
Param1.BLKW 1; Space to specify first parameter
Param2.BLKW 1; Space to specify second parameter
Result.BLKW 1; Space to store result

; End reserved section: do not change ANYTHING in reserved section!
;

; You may add variables and functions after here as you see fit.

;
IntAdd ; Result is Param1 + Param2
; Your code goes here (~4 lines)
RET
;
IntSub ; Result is Param1 Param2
; Your code goes here (~6 lines)
RET
;
IntMul ; Result is Param1 * Param2
; Your code goes here (~9 lines)
RET
;
BinaryOr ; Result is Param1 | Param2
; Your code goes here (~7 lines)
RET
;
LeftShift; Result is Param1 << Param2 ; (Fill vacant positions with 0’s) ; Your code goes here (~7 lines)RET;——————————————————————————RightShift ; Result is Param1 >> Param2
; (Fill vacant positions with 0s)
; Your code goes here (~16 lines)
RET
;
.END

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] ; P5 Assignment
$25