【发布时间】:2019-11-18 19:48:37
【问题描述】:
include irvine32.inc
.data
str1 WORD 13
BYTE 'Source String',0
desti BYTE 80 DUP(?)
.code
main PROC
mov esi,offset str1
inc esi
mov edi,offset desti
call dumpregs
mov ecx, lengthof str1
rep movsb
mov edx,offset desti
call WriteString
call crlf
exit
main ENDP
END main
【问题讨论】:
-
你还没有问过问题。
-
大概你将不得不调整
lengthof str1。
标签: string assembly x86 masm irvine32