summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/DynamicLinkerPEF.cc
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <113760121+amlel-el-mahrouss@users.noreply.github.com>2025-01-21 11:08:33 +0100
committerGitHub <noreply@github.com>2025-01-21 11:08:33 +0100
commite9616b14f5301fa06587f7c7fb271f9ccabcb819 (patch)
tree9d50ee1d0677bcfc15a6c181ff10384b805a3d7f /dev/LibCompiler/src/DynamicLinkerPEF.cc
parent7de3593a311cb8912586ba378c86271e9e0ea1db (diff)
ADD: Rebrand
Diffstat (limited to 'dev/LibCompiler/src/DynamicLinkerPEF.cc')
-rw-r--r--dev/LibCompiler/src/DynamicLinkerPEF.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibCompiler/src/DynamicLinkerPEF.cc b/dev/LibCompiler/src/DynamicLinkerPEF.cc
index 595a309..afcdb22 100644
--- a/dev/LibCompiler/src/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/DynamicLinkerPEF.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 t& Corporation, all rights reserved
+ Copyright (C) 2024 MediaSwirl, all rights reserved
@file DynamicLinker64PEF.cc
@brief: C++ 64-Bit PEF Linker.
@@ -32,7 +32,7 @@
#include <LibCompiler/NFC/AE.h>
#include <cstdint>
-#define kLinkerVersionStr "TQ 64-Bit Linker (Preferred Executable) %s, (c) t& Corporation. 2024, all rights reserved.\n"
+#define kLinkerVersionStr "TQ 64-Bit Linker (Preferred Executable) %s, (c) MediaSwirl. 2024, all rights reserved.\n"
#define MemoryCopy(DST, SRC, SZ) memcpy(DST, SRC, SZ)
#define StringCompare(DST, SRC) strcmp(DST, SRC)
@@ -253,7 +253,7 @@ LIBCOMPILER_MODULE(DynamicLinker64PEF)
pef_container.Count = 0UL;
pef_container.Kind = is_executable ? LibCompiler::kPefKindExec : LibCompiler::kPefKindDylib;
pef_container.SubCpu = kSubArch;
- pef_container.Linker = kLinkerId; // t& Corporation. Linker
+ pef_container.Linker = kLinkerId; // MediaSwirl. Linker
pef_container.Abi = kAbi; // Multi-Processor UX ABI
pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0];
pef_container.Magic[1] = kPefMagic[1];