摘要:
offset就是把偏移地址取出来 ;offset can get ip address in front of the : assume cs:code code segment start: mov ax,offset start s:mov ax,offset s code ends end s 阅读全文
摘要:
我们用dx,实现cx数据的临时存储 ;dx be used for double loops, it can save the value of cx ;double loop assume cs:code code segment mov cx,2h mov ax,0h s: mov dx,cx 阅读全文
摘要:
效果图,在地址76c:0这里本来是abc的,上代码 assume ds:data,cs:code data segment db 'abc' data ends;data block but the data will be saved in memory block 76c:0 code segm 阅读全文