写一程序段,清零当前数据段内地址从100H开始的20个字节内存单元

2024-11-26 20:32:23
推荐回答(1个)
回答1:

mov cx,20
mov bx,100h
next:
mov byte ptr ds:[bx],0
inc bx
loop next
ret