Browse Source

--- Merging r35752 into '.':
U packages/ptc/src/dos/timeunit/timeunit.pp
--- Recording mergeinfo for merge of r35752 into '.':
U .

# revisions: 35752

git-svn-id: branches/fixes_3_0@36009 -

marco 8 years ago
parent
commit
89c969ed23
1 changed files with 8 additions and 8 deletions
  1. 8 8
      packages/ptc/src/dos/timeunit/timeunit.pp

+ 8 - 8
packages/ptc/src/dos/timeunit/timeunit.pp

@@ -110,32 +110,32 @@ Label
 
 Asm
   mov CpuFlags, 0
-  pushf
+  pushfd
   pop eax
   mov ecx, eax
   xor eax, 40000h
   push eax
-  popf
-  pushf
+  popfd
+  pushfd
   pop eax
   xor eax, ecx
   jz nocpuid
   push ecx
-  popf
+  popfd
   mov eax, ecx
   xor eax, 200000h
   push eax
-  popf
-  pushf
+  popfd
+  pushfd
   pop eax
   xor eax, ecx
   je nocpuid
 
-  pusha
+  pushad
   mov eax, 1
   cpuid
   mov CpuFlags, edx
-  popa
+  popad
 
 nocpuid:
 end;