For the following program, translate all the branch statements (b, beqz, bnez, etc) to machine code, making sure you have correctly calculated the relative branch values. .text .global main main:  la $a0, prompt  jal PromptInt  move $s0, $v0  BeginLoop:  seq $t0, $s0, -1  bnez $t0, EndLoop  la $a0, result  move $a1, $s0  jal PrintInt  slti $t0, $s0, 100  beqz $t0, BigNumber  la $a0, little  jal PrintString  b EndIf  BigNumber:  la $a0, big  jal PrintString  EndIf:  la $a0, tryAgain  jal PrintString  la $a0 prompt  jal PromptInt  move $s0, $v0  b BeginLoop  EndLoop:  jal Exit .data  prompt: .asciiz "\nEneter a number (-1 to end)"  result: .asciiz "\nYou entered "  big: .asciiz "\nThat is a big number"  little: .asciiz "\nThat is a little number"  tryAgain: .asciiz "\nTry again" .include "utils.asm

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Topic Video
Question

For the following program, translate all the branch statements (b, beqz, bnez, etc) to machine
code, making sure you have correctly calculated the relative branch values.
.text
.global main
main:
 la $a0, prompt
 jal PromptInt
 move $s0, $v0

 BeginLoop:
 seq $t0, $s0, -1
 bnez $t0, EndLoop

 la $a0, result
 move $a1, $s0
 jal PrintInt

 slti $t0, $s0, 100
 beqz $t0, BigNumber
 la $a0, little
 jal PrintString
 b EndIf

 BigNumber:
 la $a0, big
 jal PrintString
 EndIf:

 la $a0, tryAgain
 jal PrintString

 la $a0 prompt
 jal PromptInt
 move $s0, $v0
 b BeginLoop

 EndLoop:
 jal Exit
.data
 prompt: .asciiz "\nEneter a number (-1 to end)"
 result: .asciiz "\nYou entered "
 big: .asciiz "\nThat is a big number"
 little: .asciiz "\nThat is a little number"
 tryAgain: .asciiz "\nTry again"
.include "utils.asm

Expert Solution
steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr