diff options
Diffstat (limited to 'ext/detours/samples/dynamic_alloc/x64.asm')
-rw-r--r-- | ext/detours/samples/dynamic_alloc/x64.asm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ext/detours/samples/dynamic_alloc/x64.asm b/ext/detours/samples/dynamic_alloc/x64.asm new file mode 100644 index 0000000..d11be8a --- /dev/null +++ b/ext/detours/samples/dynamic_alloc/x64.asm @@ -0,0 +1,25 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; +;; Detours Test Program +;; +;; Microsoft Research Detours Package +;; +;; Copyright (c) Microsoft Corporation. All rights reserved. +;; +PUBLIC CodeTemplate +PUBLIC CodeTemplate_End + +_TEXT SEGMENT + +CodeTemplate PROC + nop + nop + mov rax, 0deadbeef00000000h + nop + ret +CodeTemplate_End:: +CodeTemplate ENDP + +_TEXT ENDS + +END |