凭证式国债能网银购买:谁能帮忙把这个汇编记事本代码修改一下,多加一点功能。

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/29 17:16:43
可以加快捷键,或是添加子菜单,再把颜色改一下。
red_chr macro ;读取字符宏定义
mov ah,0
int 16h
endm
string macro p1 ;输入字符光标
mov ah,9
lea dx,p1
int 21h
endm
win macro opr1,opr2,opr3,opr4,opr5,opr6 ;建立窗口
mov ah,06h
mov al,opr1
mov bh,opr2
mov ch,opr3
mov cl,opr4
mov dh,opr5
mov dl,opr6
int 10h
endm