部件。停止系统时间

时间:2011-04-02 13:25:34

标签: assembly time x86 interrupt

我的装配课程的任务是在按住Alt键的同时停止系统时间。我是通过禁用第8个中断来实现的。据我所知,系统时间保存在内存的40:6ch单元中,因此通过读取这些数据我们可以实现当前系统时间,而且我们可以通过使用1ah中断的第二个功能来实现当前系统时间。他们是平等的吗?

我在DosBox中查看我的程序。当我在40:6ch检查系统时间时,按下Alt按钮不会改变,如果我通过1ah中断检查系统时间 - 虽然第8次中断被禁用,但是时间不断变化(它每秒增加40:6ch 18次,如同我明白)。那么我应该什么时候检查一下?或者还有其他方法可以停止系统时间吗?

以下是通过40:6ch检查时间的程序:

OutStr macro str ;макрос вывода строки  
push dx  
push ax  
mov ah,09h  
lea dx,str  
int 21h  
pop ax  
pop dx  
endm  
;----------------------------------------  
OutChar macro char ;макрос вывода символа  
push ax  
push dx  
mov ah,06h  
mov dl,char  
add dl,'0'  
int 21h  
pop dx  
pop ax  
endm  
;---------------------------------------  
;---------------------------------------  
.386  
ASSUME CS:CODE, DS:DATA  
DATA    SEGMENT USE16  
    M1 DB  13,10,':$'  
    M2 DB 13,10,'Current time',13,10,'$'  
    M3 DB  13,10,'Equal times',10,13,'$'  
    M4 DB  13,10,'Alt is not pushed',10,13,'$'  
    M5 DB  13,10,'Alt is pushed',10,13,'$'  
DATA    ENDS  

CODE    SEGMENT USE16  
begin:   
mov ax,DATA ;initialization  
mov ds,ax  

beg:  
    in al, 60h  
    cmp al,38h ; is Alt pressed?  
    jne beg ;No  
        OutStr M5 ; Alt is pressed  

cur:  
    mov ax, 40h  
    mov es, ax  
    mov ebx, dword ptr es:[6ch] ; current time  

    mov al,00000001b ;disable interrupts of the system timer  
    out 21h, al  

thisl:  
    mov ecx, dword ptr es:[6ch]  
    cmp ebx, dword ptr es:[6ch]  
    je outputTrue  
    jmp next

outputTrue:
    OutStr M3
next:   
    in  al,60h
    cmp al,38h ; is Alt pressed?
    je thisl ; Yes

tt:
    OutStr M4 ; Alt is not pressed
    mov al,0h ; enable interrupts of the system timer
    out 21h, al
    jmp beg

CODE    ENDS
end Begin

1 个答案:

答案 0 :(得分:3)

您正在体验RTC和PIT之间的区别。

PIT通常用于操作系统中的计时目的,例如wait(10);等待10秒。另一方面,RTC用于保持时间,例如知道时间是下午12:53。

PIT的中断是IRQ0,或中断0x08。 RTC的中断是IRQ8,或中断0x70。有关详细信息,请参阅此OSDev wikiwikipedia

另外,应该注意可能即使你禁用中断0x70,中断0x1A仍会报告定时器递增。这是因为它不需要向处理器发送中断以保持时间。它在内部保留时间,您可以通过输入和输出端口命令读取它。