汇编语言(王爽 第三版)实验十四

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了汇编语言(王爽 第三版)实验十四相关的知识,希望对你有一定的参考价值。

    assume cs:code
    code segment
s1:    db 9,8,7,4,2,0
s2:    db yy/mm/dd hh:mm:ss,$
start:    mov ax,cs
    mov ds,ax
    mov si,offset s1
    mov di,offset s2
    mov cx,6
s:    push cx
    mov al,ds:[si]
    out 70h,al
    in al,71h

    mov ah,al
    mov cl,4
    shr ah,cl
    and al,00001111b

    add ah,30h
    add al,30h

    mov ds:[di],ah
    mov ds:[di+1],al

    inc si
    add di,3
    pop cx
    loop s

    mov ah,2
    mov bh,0
    mov dh,5
    mov dl,12
    int 10h

    mov dx,offset s2
    mov ah,9
    int 21h

    mov ax,4c00h
    int 21h
    code ends
    end start

 

以上是关于汇编语言(王爽 第三版)实验十四的主要内容,如果未能解决你的问题,请参考以下文章

汇编语言(王爽 第三版)实验十二

汇编语言(王爽 第三版)实验十六

汇编语言(王爽 第三版)实验十四

汇编语言第三版(王爽)实验七

汇编语言 王爽第三版学习笔记目录+习题解析+实验

汇编语言(王爽著第三版)实验二