From 639d4365805d893b130bf22da9ecc97a256a77d0 Mon Sep 17 00:00:00 2001 From: "Iliya Mihailov (Ghost)" Date: Sat, 20 Sep 2008 05:52:34 +0000 Subject: [PATCH] and eax, 0xff -> movzx eax, al git-svn-id: svn://kolibrios.org@865 a494cfbc-eb01-0410-851d-a64ba20cac60 --- kernel/branches/kolibri_pe/core/syscall.inc | 6 +++--- kernel/trunk/core/syscall.inc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kernel/branches/kolibri_pe/core/syscall.inc b/kernel/branches/kolibri_pe/core/syscall.inc index 2213e80a86..7e09c0091a 100644 --- a/kernel/branches/kolibri_pe/core/syscall.inc +++ b/kernel/branches/kolibri_pe/core/syscall.inc @@ -33,7 +33,7 @@ align 16 i40: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad iretd @@ -54,7 +54,7 @@ sysenter_entry: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad @@ -87,7 +87,7 @@ syscall_entry: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad diff --git a/kernel/trunk/core/syscall.inc b/kernel/trunk/core/syscall.inc index 2213e80a86..7e09c0091a 100644 --- a/kernel/trunk/core/syscall.inc +++ b/kernel/trunk/core/syscall.inc @@ -33,7 +33,7 @@ align 16 i40: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad iretd @@ -54,7 +54,7 @@ sysenter_entry: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad @@ -87,7 +87,7 @@ syscall_entry: pushad cld - and eax, 0xff + movzx eax, al call dword [servetable2 + eax * 4] popad