summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/DynamicLinkerPEF.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-04 10:09:53 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-04 10:09:53 +0100
commit60eb7b7731e122b2e116cac5ce10617ef794a31a (patch)
tree058fb99d8365fdf5c99ce6746718df6745f2577c /dev/LibCompiler/src/DynamicLinkerPEF.cc
parent7c2425f9b3f2d2cd7655dd9449d8aef6275eb1cc (diff)
ADD: Minor tweaks.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibCompiler/src/DynamicLinkerPEF.cc')
-rw-r--r--dev/LibCompiler/src/DynamicLinkerPEF.cc8
1 files changed, 4 insertions, 4 deletions
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;