|
4鱼币
本帖最后由 yuinitiatec++ 于 2014-3-30 16:19 编辑
-----------程序框架:-------------------
assume cs:code
data segment
db 'conversation',0
data ends
code segment
start:
mov ax,data
mov ds,ax
mov bx,0 ;起作用是将索引data段中的数据
int 7ch ;调用7c中断程序
mov ax,4c00h
int 21h
code ends
end start
;将数据段中得数据利用int指令变成大写字母
;程序调试ok
;课本用得是si,这里把他该成bx,因为在中断处理程序中有冲突
---------------中段处理程序------------------------
assume cs:code
code segment
start: ;安装程序
mov ax,cs ;源地址
mov ds,ax
mov si,offset capital
mov ax,0 ;目标地址
mov es,ax
mov di,200h
mov cx,offset capitalend -offset capital
cld
rep movsb
mov ax,0 ;设置中断向量表
mov es,ax
mov word ptr es:[7ch*4],200h
mov word ptr es:[7ch*4+2],0
mov ax,4c00h
int 21h
;设计中断处理程序
mov ch,0 ;在循环外定一ch=0相当于进行了优化
capital:
mov al,ds:[bx] ;将数据给了al
mov cl,ds:[bx] ;将数据给cl进行判断
jcxz ok
and al,11011111b ;进行与运算
mov ds:[bx+10h],al ;提示在下一行看效果
inc bx
jmp short capital
ok:
iret
capitalend:
nop
code ends
end start
**********这个程序照样执行正确************ ^^^^^^ 这是为何!^^^^^
|
|