2011年5月10日

摘要: 三个模块都集合在一个文件里了,,assume cs:code,ss:stackdata segment db 10 dup (0)data endsstack segment db 16 dup (0)stack endscode segmentstart: mov ax,12666 mov bx,data mov ds,bx mov bx,stack mov ss,bx mov sp,16 mov si,0 call dtoc mov dh,8 mov dl,3 mov cl,2 call show_str mov ax,4c00h int 21h dtoc:mov dx,0 mov bp. 阅读全文

posted @ 2011-05-10 23:40 Kanone 阅读(249) 评论(0) 推荐(0)