zoukankan      html  css  js  c++  java
  • CMOS RAM中存储的时间信息

    assume cs:code

    code segment
    start:
        mov al, 8
        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 bx, 0b800h
        mov es, bx
        mov bl, 0ah
        mov byte ptr es:[160*12+40*2], ah
        mov byte ptr es:[160*12+40*2+1], bl
        mov byte ptr es:[160*12+40*2+2], al
        mov byte ptr es:[160*12+40*2+3], bl
        mov ax, 4c00h
        int 21h
        code ends
    end start

  • 相关阅读:
    Java线程面试题 Top 50
    抽象类
    this和super的区别
    引用传递
    【代码】递归调用
    java异常
    抽象类 final
    sublime使用技巧
    zabbix表达式
    tcpdump
  • 原文地址:https://www.cnblogs.com/qintangtao/p/2867846.html
Copyright © 2011-2022 走看看