Question: Assembly Language Question: Consider the following code fragment: .data msg: .asciiz Hello Which sequence of instruction will print the string Hello on the console screen?
Assembly Language Question:

Consider the following code fragment: .data msg: .asciiz "Hello" Which sequence of instruction will print the string "Hello" on the console screen? addi $v0, $zero, 4 la $al, msg syscall addi $v0, $zero, 1 la $al, msg syscall addi $v0, $zero, 1 la $a0, msg syscall addi $v0, $zero, 4 la $a0, msg syscall
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
