标签: assembly memory x86 x86-16
如何将数据从内存中的一个地址移动到内存中的另一个地址(程序集)?
这是我写的,我不知道它是否正确。 有人可以帮忙吗?
mov ax,2000h mov bx,3000h mov cx,[ax] mov [bx],cx