diff portasm/portasm-arm64.S @ 645:6a8aac9b2bcf

- removal of `autovar` macro detection lib: * was a good idea, but never fully pushed through, so code was duplicating most of dyncall_macros.h * didn't find any outside use and plans to make it a standalone lib never materialized * so basically removing code to avoid code duplication that risks to never stay in sync
author Tassilo Philipp
date Mon, 05 Feb 2024 16:43:59 +0100
parents 7d9f526dc2ad
children
line wrap: on
line diff
--- a/portasm/portasm-arm64.S	Thu Dec 15 10:27:40 2022 +0100
+++ b/portasm/portasm-arm64.S	Mon Feb 05 16:43:59 2024 +0100
@@ -25,7 +25,7 @@
 
 
 #define BEGIN_ASM
-#include "../autovar/autovar_OS.h"
+#include "../dyncall/dyncall_macros.h"
 
 #if defined(GEN_MASM)
 #define TEXTAREA AREA .text, CODE, ARM64
@@ -46,7 +46,7 @@
 #define END_PROC
 #define END_ASM
 
-#if defined(OS_Darwin)
+#if defined(DC__OS_Darwin)
 #define GLOBAL_C(X) .globl _##X
 #define ENTRY_C(X) _##X:
 #else