Complete the code to write a branch instruction that jumps to the label 'loop'.
B [1]The B instruction is used to branch (jump) to a label. Here, the label is loop.
Complete the code to branch to the label 'exit' conditionally.
B[1] exitThe B instruction with condition EQ branches if the zero flag is set (equal condition).
Fix the error in the branch instruction to correctly jump to 'func'.
B [1]The branch instruction requires the label name without parentheses or symbols. Use func directly.
Fill both blanks to create a conditional branch that jumps to 'retry' if greater than zero.
B[1] [2]
GT means branch if greater than (signed comparison). The label to jump to is retry.
Fill all three blanks to create a branch instruction with condition 'NE' to label 'loop_start' and add a comment.
B[1] [2] ; [3]
The instruction branches if not equal (NE) to the label loop_start. The comment explains the purpose.