summaryrefslogtreecommitdiff
path: root/arm64/common.S
diff options
context:
space:
mode:
Diffstat (limited to 'arm64/common.S')
-rw-r--r--arm64/common.S25
1 files changed, 0 insertions, 25 deletions
diff --git a/arm64/common.S b/arm64/common.S
deleted file mode 100644
index 34bb529..0000000
--- a/arm64/common.S
+++ /dev/null
@@ -1,25 +0,0 @@
-// ================================================================================================
-// Shared macros
-//
-// License:
-// SPDX-License-Identifier: 0BSD
-// Copyright (c) 2026 Hunter Kvalevog
-//
-// Permission to use, copy, modify, and/or distribute this software for any
-// purpose with or without fee is hereby granted.
-//
-// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-// WITH REGARD TO THIS SOFTWARE.
-// ================================================================================================
-
-#define CONCAT_(A, B) A ## B
-#define CONCAT(A, B) CONCAT_(A, B)
-
-#ifdef __APPLE__
-# define SYM(LABEL) CONCAT(_, LABEL)
-# define TEXT_SEGMENT .section __TEXT,__text
-#else
-# define SYM(LABEL) LABEL
-# define TEXT_SEGMENT .section .text
-#endif
-