I need some help with code after a Single step through lines 1-5 using uVision2. Will the entire code segment be executed with the current values in P0? Why? Alter the value of P0 within the debugger to enable the program to continue execution. Single step through lines 6 and 7. Display and record the contents of data memory location 20h, using the memory window
mystuff segment data
rseg mystuff
myvar: DS 1
mycode segment code
rseg mycode
; 1-13 are lines of the code
1 MOV 80H, #0FFH ;initialize P0 to 0FFH
2 MOV A,#10
3 MOV R0,#20H
4 LOOP: JNB P0.2,NEXT
5 JMP LOOP
6 NEXT: MOV @R0,80H
7 CLR 07H
8 TIME: DEC A
9 JNZ TIME
10 MOV myvar,#42H
11 NOP
12 NOP
13 END
Thank you in advance