summaryrefslogtreecommitdiff
path: root/src/pal/src/arch/arm64/debugbreak.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/arch/arm64/debugbreak.S')
-rw-r--r--src/pal/src/arch/arm64/debugbreak.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pal/src/arch/arm64/debugbreak.S b/src/pal/src/arch/arm64/debugbreak.S
new file mode 100644
index 0000000000..4637a2e198
--- /dev/null
+++ b/src/pal/src/arch/arm64/debugbreak.S
@@ -0,0 +1,12 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+#include "unixasmmacros.inc"
+
+LEAF_ENTRY DBG_DebugBreak, _TEXT
+ EMIT_BREAKPOINT
+ ret
+LEAF_END DBG_DebugBreak, _TEXT
+