Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5629 → Rev 5645

/kernel/branches/Kolibri-acpi/core/apic.inc
441,11 → 441,16
 
align 4
get_clock_ns:
 
mov eax, [hpet_base]
test eax, eax
jz .old_tics
 
push ebx
pushfd
cli
 
mov ebx, [hpet_base]
mov ebx, eax
@@:
mov edx, [ebx+0xF4]
mov eax, [ebx+0xF0]
463,3 → 468,9
pop ebx
ret
 
.old_tics:
mov eax, [timer_ticks]
mov edx, 10000000
mul edx
ret