summaryrefslogtreecommitdiff
path: root/src/debug/ee/arm64/primitives.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/ee/arm64/primitives.cpp')
-rw-r--r--src/debug/ee/arm64/primitives.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/debug/ee/arm64/primitives.cpp b/src/debug/ee/arm64/primitives.cpp
new file mode 100644
index 0000000000..86d6159164
--- /dev/null
+++ b/src/debug/ee/arm64/primitives.cpp
@@ -0,0 +1,16 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+//
+
+#include "stdafx.h"
+#include "threads.h"
+#include "../../shared/arm64/primitives.cpp"
+
+void CopyREGDISPLAY(REGDISPLAY* pDst, REGDISPLAY* pSrc)
+{
+ CONTEXT tmp;
+ CopyRegDisplay(pSrc, pDst, &tmp);
+}