Added patch to emulate 'mov Eb, Gb' instruction on x86 processor architecture.

This commit is contained in:
Sebastian Lackner
2014-11-10 07:36:40 +01:00
parent c3920efc17
commit 5eae92bf33
4 changed files with 99 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ PATCHLIST := \
ntdll-ThreadTime.ok \
ntdll-Vectored_Continue_Handler.ok \
ntdll-WRITECOPY.ok \
ntoskrnl-Emulator.ok \
ntoskrnl-IoCsqInitialize.ok \
ntoskrnl-Irp_Status.ok \
ntoskrnl-KeSetSystemAffinityThread.ok \
@@ -1115,6 +1116,21 @@ ntdll-WRITECOPY.ok:
echo '+ { "ntdll-WRITECOPY", "Michael Müller", "Change WRITECOPY memory protection to WRITE on first write. [rev 4]" },'; \
) > ntdll-WRITECOPY.ok
# Patchset ntoskrnl-Emulator
# |
# | Included patches:
# | * Emulate 'mov Eb, Gb' instruction on x86 processor architecture. [by Sebastian Lackner]
# |
# | Modified files:
# | * dlls/ntoskrnl.exe/instr.c
# |
.INTERMEDIATE: ntoskrnl-Emulator.ok
ntoskrnl-Emulator.ok:
$(call APPLY_FILE,ntoskrnl-Emulator/0001-ntoskrnl-Emulate-mov-Eb-Gb-instruction-on-x86-proces.patch)
@( \
echo '+ { "ntoskrnl-Emulator", "Sebastian Lackner", "Emulate '\''mov Eb, Gb'\'' instruction on x86 processor architecture." },'; \
) > ntoskrnl-Emulator.ok
# Patchset ntoskrnl-IoCsqInitialize
# |
# | Included patches: