الاثنين، 17 مارس 2014
3:39 م

string instruction : STOSB

org 100h
mov ax,0h
mov ds,ax // do not need because use (di with es)
mov es,ax
mov di,0a000h
mov al,05h
mov cx,0fh
cld            // do not need because only increment
again:
stosb            // di <-- al , inc di
loop again  // dec cx
hlt

0 التعليقات:

إرسال تعليق