彙編實驗四

(1)綜合使用 loop,[bx],編寫完整彙編程序,實現向內存 b800:07b8 開始的連續 16 個 字單元重複填充字數據0403H。  代碼爲: assume cs:code code segment mov dx, 0b800h mov ds, dx mov bx, 07b8h mov cx, 16 s: mov [bx], 0403h loop s mov ax, 4c00h int
相關文章
相關標籤/搜索