Question: Use the following code as a starting point Finish the code below so the procedure strcpy copies a string from one buffer into another using

Use the following code as a starting point
Finish the code below so the procedure strcpy copies a string from one buffer into another using indirect addressing
INCLUDE Irvine32.inc
INCLUDE macros.inc
.data
Sbuf BYTE "The night is dark and full of terrors",0
Dbuf BYTE LENGTHOF DUP(0)
.code
main PROC
mov ecx, LENGTHOF Sbuf
mov esi, __________________________________
mov edi, __________________________________ Dbuf
call strcpy
exit
main ENDP
strcpy _______________ USES _______________________________
L1:
mov al,___________________
mov _________________, al
inc esi
inc edi
loop L1
_________________
________________________________

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!