mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-12 10:48:53 +03:00
26 lines
403 B
NASM
26 lines
403 B
NASM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;; 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
|