diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-06 07:44:17 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-06 07:44:17 +0100 |
| commit | 0328200aea1498a0387b6777a3be89eb280f0cdf (patch) | |
| tree | 840cd72ebd9fd0c1ce106c0801143f492a3f8774 | |
| parent | 271fac5176b2e0f818174363d3f53295adc652c6 (diff) | |
IMP: Use EL Mahrouss Logic brand instead of my name.
| -rw-r--r-- | dev/ToolchainKit/AAL/CPU/power64.h | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/NFC/Ref.h | 4 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/Assembler64x0.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/AssemblerAMD64.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/AssemblerPower.cc | 4 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/AssemblyFactory.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/CCompiler64x0.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/CCompilerPower64.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc | 4 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/CPlusPlusCompilerPreProcessor.cc | 2 | ||||
| -rw-r--r-- | dev/ToolchainKit/src/Linker64.cc | 2 | ||||
| -rwxr-xr-x | make_docs.sh | 2 | ||||
| -rw-r--r-- | tools/asm.cc | 4 | ||||
| -rw-r--r-- | tools/cl.cc | 4 |
14 files changed, 19 insertions, 19 deletions
diff --git a/dev/ToolchainKit/AAL/CPU/power64.h b/dev/ToolchainKit/AAL/CPU/power64.h index 582c6ee..d34ee49 100644 --- a/dev/ToolchainKit/AAL/CPU/power64.h +++ b/dev/ToolchainKit/AAL/CPU/power64.h @@ -1,7 +1,7 @@ /* ------------------------------------------- Some modifications are copyrighted under: - Amlal EL Mahrouss + EL Mahrouss Logic Original author: Apple Inc diff --git a/dev/ToolchainKit/NFC/Ref.h b/dev/ToolchainKit/NFC/Ref.h index 07d4496..aa00d2c 100644 --- a/dev/ToolchainKit/NFC/Ref.h +++ b/dev/ToolchainKit/NFC/Ref.h @@ -14,7 +14,7 @@ namespace ToolchainKit { - // @author Amlal El Mahrouss + // @author Amlal EL Mahrouss // @brief Reference holder class, refers to a pointer of data in static memory. template <typename T> class Ref final @@ -75,7 +75,7 @@ namespace ToolchainKit Bool m_Strong{false}; }; - // @author Amlal El Mahrouss + // @author Amlal EL Mahrouss // @brief Non null Reference holder class, refers to a pointer of data in static memory. template <typename T> class NonNullRef final diff --git a/dev/ToolchainKit/src/Assembler64x0.cc b/dev/ToolchainKit/src/Assembler64x0.cc index a398a10..c7c8d39 100644 --- a/dev/ToolchainKit/src/Assembler64x0.cc +++ b/dev/ToolchainKit/src/Assembler64x0.cc @@ -120,7 +120,7 @@ TOOLCHAINKIT_MODULE(AssemblerMain64x0) if (strcmp(argv[i], "--ver") == 0 || strcmp(argv[i], "--v") == 0) { kStdOut << "Assembler64x0: 64x0 Assembler.\nAssembler64x0: v1.10\nAssembler64x0: Copyright (c) " - "Amlal EL Mahrouss.\n"; + "EL Mahrouss Logic.\n"; return 0; } else if (strcmp(argv[i], "--h") == 0) diff --git a/dev/ToolchainKit/src/AssemblerAMD64.cc b/dev/ToolchainKit/src/AssemblerAMD64.cc index 5d9e4af..f5a6de8 100644 --- a/dev/ToolchainKit/src/AssemblerAMD64.cc +++ b/dev/ToolchainKit/src/AssemblerAMD64.cc @@ -145,7 +145,7 @@ TOOLCHAINKIT_MODULE(AssemblerAMD64) else if (strcmp(argv[i], "--amd64:h") == 0) { kStdOut << "AssemblerAMD64: AMD64 Assembler Driver.\nAssemblerAMD64: Copyright (c) 2024 " - "Amlal EL Mahrouss.\n"; + "EL Mahrouss Logic.\n"; kStdOut << "--version: Print program version.\n"; kStdOut << "--verbose: Print verbose output.\n"; kStdOut << "--binary: Output as flat binary.\n"; diff --git a/dev/ToolchainKit/src/AssemblerPower.cc b/dev/ToolchainKit/src/AssemblerPower.cc index da1ef1a..96f544a 100644 --- a/dev/ToolchainKit/src/AssemblerPower.cc +++ b/dev/ToolchainKit/src/AssemblerPower.cc @@ -91,13 +91,13 @@ TOOLCHAINKIT_MODULE(AssemblerMainPower64) { kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: " << kDistVersion << "\nAssemblerPower: " "Copyright (c) " - "Amlal EL Mahrouss.\n"; + "EL Mahrouss Logic.\n"; return 0; } else if (strcmp(argv[i], "--h") == 0) { kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: Copyright (c) 2024 " - "Amlal EL Mahrouss.\n"; + "EL Mahrouss Logic.\n"; kStdOut << "--version,/v: print program version.\n"; kStdOut << "--verbose: print verbose output.\n"; kStdOut << "--binary: output as flat binary.\n"; diff --git a/dev/ToolchainKit/src/AssemblyFactory.cc b/dev/ToolchainKit/src/AssemblyFactory.cc index 4f22302..dc601d5 100644 --- a/dev/ToolchainKit/src/AssemblyFactory.cc +++ b/dev/ToolchainKit/src/AssemblyFactory.cc @@ -14,7 +14,7 @@ * @version 0.1 * @date 2024-01-27 * - * @copyright Copyright (c) 2024, Amlal EL Mahrouss + * @copyright Copyright (c) 2024, EL Mahrouss Logic * */ diff --git a/dev/ToolchainKit/src/CCompiler64x0.cc b/dev/ToolchainKit/src/CCompiler64x0.cc index 3e01bc3..5beafbd 100644 --- a/dev/ToolchainKit/src/CCompiler64x0.cc +++ b/dev/ToolchainKit/src/CCompiler64x0.cc @@ -27,7 +27,7 @@ /* This is part of the ToolchainKit. */ /* (c) EL Mahrouss Logic */ -/// @author Amlal El Mahrouss (amlel) +/// @author Amlal EL Mahrouss (amlel) /// @file 64x0-cc.cxx /// @brief 64x0 C Compiler. diff --git a/dev/ToolchainKit/src/CCompilerPower64.cc b/dev/ToolchainKit/src/CCompilerPower64.cc index f2ab6ff..bb90db6 100644 --- a/dev/ToolchainKit/src/CCompilerPower64.cc +++ b/dev/ToolchainKit/src/CCompilerPower64.cc @@ -22,7 +22,7 @@ #define kExitOK 0 -/// @author Amlal El Mahrouss (amlel) +/// @author Amlal EL Mahrouss (amlel) /// @file cc.cxx /// @brief POWER64 C Compiler. diff --git a/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc b/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc index ae3e5ae..bb4e73a 100644 --- a/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc +++ b/dev/ToolchainKit/src/CPlusPlusCompilerAMD64.cc @@ -15,7 +15,7 @@ #define kExitFail (EXIT_FAILURE) #define kSplashCxx() \ - kPrintF(kWhite "%s\n", "ZKA C++ Compiler Driver, (c) 2024 Amlal EL Mahrouss, all rights reserved.") + kPrintF(kWhite "%s\n", "ZKA C++ Compiler Driver, (c) 2024 EL Mahrouss Logic, all rights reserved.") // extern_segment, @MLAutoRelease { ... }, fn foo() -> auto { ... } @@ -27,7 +27,7 @@ /* This is part of the ToolchainKit. */ /* (c) EL Mahrouss Logic */ -/// @author Amlal El Mahrouss (amlel) +/// @author Amlal EL Mahrouss (amlel) /// @file CPlusPlusCompilerAMD64.cxx /// @brief Optimized C++ Compiler Driver. /// @todo Throw error for scoped inside scoped variables when they get referenced outside. diff --git a/dev/ToolchainKit/src/CPlusPlusCompilerPreProcessor.cc b/dev/ToolchainKit/src/CPlusPlusCompilerPreProcessor.cc index b76295f..33768b5 100644 --- a/dev/ToolchainKit/src/CPlusPlusCompilerPreProcessor.cc +++ b/dev/ToolchainKit/src/CPlusPlusCompilerPreProcessor.cc @@ -20,7 +20,7 @@ #define kMacroPrefix '#' -/// @author Amlal El Mahrouss (amlel) +/// @author Amlal EL Mahrouss (amlel) /// @file bpp.cxx /// @brief Preprocessor. diff --git a/dev/ToolchainKit/src/Linker64.cc b/dev/ToolchainKit/src/Linker64.cc index fe2906e..b09f451 100644 --- a/dev/ToolchainKit/src/Linker64.cc +++ b/dev/ToolchainKit/src/Linker64.cc @@ -238,7 +238,7 @@ TOOLCHAINKIT_MODULE(Linker64Main) pef_container.Count = 0UL; pef_container.Kind = is_executable ? ToolchainKit::kPefKindExec : ToolchainKit::kPefKindDylib; pef_container.SubCpu = kSubArch; - pef_container.Linker = kLinkerId; // Amlal EL Mahrouss Linker + pef_container.Linker = kLinkerId; // EL Mahrouss Logic Linker pef_container.Abi = kAbi; // Multi-Processor UX ABI pef_container.Magic[0] = kPefMagic[kFatBinaryEnable ? 2 : 0]; pef_container.Magic[1] = kPefMagic[1]; diff --git a/make_docs.sh b/make_docs.sh index 4860c7a..92765e7 100755 --- a/make_docs.sh +++ b/make_docs.sh @@ -2,4 +2,4 @@ mkdir -p html -XSDocgen --source ./dev/ --output ./html --undocumented --project-name "ZKA CoreFoundation" --enable-c++ --project-copyright "Amlal EL Mahrouss © %Y - All rights Reserved" --project-version "930.2024.1" --company-name "Amlal EL Mahrouss" +XSDocgen --source ./dev/ --output ./html --undocumented --project-name "ZKA CoreFoundation" --enable-c++ --project-copyright "EL Mahrouss Logic © %Y - All rights Reserved" --project-version "930.2024.1" --company-name "EL Mahrouss Logic" diff --git a/tools/asm.cc b/tools/asm.cc index 975612e..63c09ce 100644 --- a/tools/asm.cc +++ b/tools/asm.cc @@ -37,8 +37,8 @@ int main(int argc, char const* argv[]) { std::printf("asm.exe: Frontend Assembler (64x0, power64, x64).\n"); std::printf("asm.exe: Version: %s, Release: %s.\n", kDistVersion, kDistRelease); - std::printf("asm.exe: Designed by Amlal El Mahrouss, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); - std::printf("libToolchainKit.dylib: Designed by Amlal El Mahrouss, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); + std::printf("asm.exe: Designed by EL Mahrouss Logic, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); + std::printf("libToolchainKit.dylib: Designed by EL Mahrouss Logic, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); return 0; } diff --git a/tools/cl.cc b/tools/cl.cc index 7475b2f..5374a40 100644 --- a/tools/cl.cc +++ b/tools/cl.cc @@ -25,8 +25,8 @@ int main(int argc, char const* argv[]) { std::printf("cl.exe: Frontend C++ Compiler.\n"); std::printf("cl.exe: Version: %s, Release: %s.\n", kDistVersion, kDistRelease); - std::printf("cl.exe: Designed by Amlal El Mahrouss, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); - std::printf("libToolchainKit.dylib: Designed by Amlal El Mahrouss, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); + std::printf("cl.exe: Designed by EL Mahrouss Logic, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); + std::printf("libToolchainKit.dylib: Designed by EL Mahrouss Logic, Copyright (C) 2024, EL Mahrouss Logic, all rights reserved.\n"); return 0; } |
