Question: Given the following MASM code snippet, what is output to the screen? INCLUDE Irvine32.inc .data str1 BYTE Go Beavs!!, .code main PROC MOV ESI, OFFSET

Given the following MASM code snippet, what is output to the screen? INCLUDE Irvine32.inc .data str1 BYTE "Go Beavs!!", .code main PROC MOV ESI, OFFSET str1 ADD ESI, 3 MOV ECX, 4 CLD _L1: LODSB CALL WriteChar LOOP _L1 MOV ECX, 4 STD _L2: LODSB CALL WriteChar LOOP_L2 exit main ENDP W END main Beavsvae O Go Beavs!! O BeavvaeB Go Beavs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
