实验4 [bx]和loop的使用
生活随笔
收集整理的這篇文章主要介紹了
实验4 [bx]和loop的使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
(1)
assume cs:codesgcodesg segmentmov ax, 0mov ds, axmov bx, 200H ;ds:bx數據區mov cx, 40hmov dl, 0 s: mov ds:[bx], dl ;dl中間變量inc bxinc dlloop smov ax, 4c00h int 21hcodesg ends end
實驗結果:
(2)
考慮(1)代碼中哪里可以精簡?
0:200~0:23F,其實就是絕對地址[200~23F],也可以解釋為[20:0~20:3F],這樣的話代碼可以精簡為:
(3) assume cs:code assume cs:codecode segmentsStart: mov ax, csmov ds, ax ;ds:bxmov ax, 0020hmov es, axmov bx, 0 ;es:bxmov cx, offset sEnd - offset sStart s: mov al, [bx]mov es:[bx], alinc bxloop ssEnd: mov ax, 4c00hint 21hcode ends end sStart
實驗結果:
總結
以上是生活随笔為你收集整理的实验4 [bx]和loop的使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: pythonflaskmock数据_Fl
- 下一篇: 谷歌翻译突然用不了了