Question: Study the given assembly language in Figure 3 below 1 INCLUDE Irvine32.inc 2 3 .data 4 string1 BYTE Integer Number Representation (32 bits) :,0 5
Study the given assembly language in Figure 3 below
| 1 INCLUDE Irvine32.inc 2 3 .data 4 string1 BYTE "Integer Number Representation (32 bits) :",0 5 IntValue DWORD 2000 6 .code 7 8 main PROC 9 call Crlf 10 mov edx, OFFSET string1 11 12 call Crlf 13 14 call Crlf 15 mov eax, IntValue 16 17 call Crlf 18 19 mov eax,IntValue 20 21 call Crlf 22 23 call Crlf 24 mov eax, IntValue 25 26 call Crlf 27 call Crlf 28 exit 29 main ENDP 30 END main
|
Figure 3
Refer to the assembly language code in Figure 3, answer this following questions:
- Run and debug the program.
- Capture the output from the visual studio
- State the line numbers that are creating the problem.
- Rewrite the code, debug and run again the code with no error.
- Capture and attached the output of the program from (c).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
