From 15239ba6cfe2279b5afebfd4f954bb5469c605f1 Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Tue, 9 Jun 2026 17:45:45 -0500 Subject: --- aarch64/common.S | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 aarch64/common.S (limited to 'aarch64/common.S') diff --git a/aarch64/common.S b/aarch64/common.S new file mode 100644 index 0000000..34bb529 --- /dev/null +++ b/aarch64/common.S @@ -0,0 +1,25 @@ +// ================================================================================================ +// 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 + -- cgit v1.2.3