summaryrefslogtreecommitdiffhomepage
path: root/Sources/link.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-06-01 12:22:17 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-06-01 12:22:17 +0200
commitd0b25baeca4f807b43cff3bda2efd03fdff96728 (patch)
tree60eeb17bc9780061fa1bc9260d294ac9c4b90e92 /Sources/link.cc
parentebab1465b4d42910da1b36d8c65487c2f077b481 (diff)
publishing my work.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Sources/link.cc')
-rw-r--r--Sources/link.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Sources/link.cc b/Sources/link.cc
index 47406c4..e245f4c 100644
--- a/Sources/link.cc
+++ b/Sources/link.cc
@@ -1,12 +1,12 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright Amlal El Mahrouss
------------------------------------------- */
/// @file link.cc
/// @author Amlal El Mahrouss (amlel)
-/// @brief SoftwareLabs Linker.
+/// @brief Amlal El Mahrouss Linker.
/// Last Rev: Sat Feb 24 CET 2024
@@ -35,7 +35,7 @@
#include <fstream>
#include <iostream>
-#define kLinkerVersion "SoftwareLabs Linker %s, (c) SoftwareLabs 2024\n"
+#define kLinkerVersion "Amlal El Mahrouss Linker %s, (c) Amlal El Mahrouss 2024\n"
#define StringCompare(DST, SRC) strcmp(DST, SRC)
@@ -184,7 +184,7 @@ MPCC_MODULE(NewOSLinker) {
pef_container.Count = 0UL;
pef_container.Kind = CompilerKit::kPefKindExec;
pef_container.SubCpu = kSubArch;
- pef_container.Linker = kLinkerId; // SoftwareLabs Linker
+ pef_container.Linker = kLinkerId; // Amlal El Mahrouss Linker
pef_container.Abi = kAbi; // Multi-Processor UX ABI
pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0];
pef_container.Magic[1] = kPefMagic[1];