Create an assembly program that display following series anditerate it for 15 ti
ID: 3608708 • Letter: C
Question
Create an assembly program that display following series anditerate it for 15 times. Series will be 3,5,6,10,9,15,12,20,15,25..... Initialize the first register as 3 and 5. Keep two register asa counter for each sub part of the series. NOTE: Emphasis should be put on efficient register usage.(using pcspim) I want to make sure I got it right, thanks for yourhelp!! Create an assembly program that display following series anditerate it for 15 times. Series will be 3,5,6,10,9,15,12,20,15,25..... Initialize the first register as 3 and 5. Keep two register asa counter for each sub part of the series. NOTE: Emphasis should be put on efficient register usage.(using pcspim) I want to make sure I got it right, thanks for yourhelp!!Explanation / Answer
please rate - thanks hope this is what you were looking for it took a while to see the series, you didn't explain it .text .globl main main: li$t1,15 #t1 is loop counter li$t2,3 #t2 1 set increment li$t3,5 #t3 other set increment li$t4,0 #where 1st set will be li$t5,0 #where 2nd set will be loop: add $t4,$t4,$t2 move $a0, $t4 li $v01 #printsum syscall la,$a0,comma #print comma li $v0,4 syscall add $t5,$t5,$t3 move $a0, $t5 li $v01 #printsum syscall addi $t1,-1 blez $t1,end #done? li$v0,4 #noprint comma la, $a0,comma syscall j loop end: li $v0,10 syscall .data comma: .asciiz ","
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.