摘要:
assume cs:code data segment db 10 dup (0) code segment start: mov ax,12666 mov bx,data mov ds,bx mov si,0 call dtoc mov dh,8 mov dl,3 mov cl,2 call sh 阅读全文
posted @ 2023-07-04 23:16
hellomydaughter
阅读(17)
评论(0)
推荐(0)
摘要:
assume cs:code data segment db 'Welcome to masm!',0 data ends code segment start: mov dh,8 mov dl,3 mov cl,2 mov ax,data mov ds,ax mov si,0 call show_ 阅读全文
posted @ 2023-07-04 17:18
hellomydaughter
阅读(54)
评论(0)
推荐(0)