From 60eb7b7731e122b2e116cac5ce10617ef794a31a Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 4 Feb 2025 10:09:53 +0100 Subject: ADD: Minor tweaks. Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/src/DynamicLinkerPEF.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/LibCompiler/src/DynamicLinkerPEF.cc') diff --git a/dev/LibCompiler/src/DynamicLinkerPEF.cc b/dev/LibCompiler/src/DynamicLinkerPEF.cc index cdcd0e3..e9b8ae0 100644 --- a/dev/LibCompiler/src/DynamicLinkerPEF.cc +++ b/dev/LibCompiler/src/DynamicLinkerPEF.cc @@ -63,12 +63,12 @@ namespace Detail enum { kABITypeStart = 0x1010, /* Invalid ABI start of ABI list. */ - kABITypeZKA = 0x5046, /* PF (ZKA PEF ABI) */ + kABITypeNE = 0x5046, /* PF (NE PEF ABI) */ kABITypeInvalid = 0xFFFF, }; static LibCompiler::String kOutput = ""; -static Int32 kAbi = kABITypeZKA; +static Int32 kAbi = kABITypeNE; static Int32 kSubArch = kPefNoSubCpu; static Int32 kArch = LibCompiler::kPefArchInvalid; static Bool kFatBinaryEnable = false; @@ -90,8 +90,8 @@ static uintptr_t kByteCount = 1024; #define kPrintF printf #define kLinkerSplash() kPrintF(kWhite kLinkerVersionStr, kDistVersion) -/// @brief ZKA 64-bit Linker. -/// @note This linker is made for PEF executable, thus ZKA based OSes. +/// @brief NE 64-bit Linker. +/// @note This linker is made for PEF executable, thus NE based OSes. LIBCOMPILER_MODULE(DynamicLinker64PEF) { bool is_executable = true; -- cgit v1.2.3