diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-28 05:46:11 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-28 05:46:11 +0100 |
| commit | e227fc2e6c482c850477a1741c673afae31d46fa (patch) | |
| tree | 947c1754d11e16eefc9abb3a7cedb0b8372a9058 /dev/LibCompiler/src | |
| parent | f61c814a0a95e98529c96361c992f1a8ea24688a (diff) | |
META: Change from inc to corp.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibCompiler/src')
| -rw-r--r-- | dev/LibCompiler/src/Assembler32x0.cc | 2 | ||||
| -rw-r--r-- | dev/LibCompiler/src/Assembler64x0.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/AssemblerAMD64.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/AssemblerPower.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/AssemblyFactory.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CCompiler64x0.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CCompilerPower64.cc | 4 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/Detail/AsmUtils.h | 2 | ||||
| -rw-r--r-- | dev/LibCompiler/src/Detail/ClUtils.h | 2 | ||||
| -rw-r--r-- | dev/LibCompiler/src/DynamicLinker64PEF.cc | 6 | ||||
| -rw-r--r-- | dev/LibCompiler/src/String.cc | 4 |
13 files changed, 29 insertions, 29 deletions
diff --git a/dev/LibCompiler/src/Assembler32x0.cc b/dev/LibCompiler/src/Assembler32x0.cc index 3a5e030..e6a055f 100644 --- a/dev/LibCompiler/src/Assembler32x0.cc +++ b/dev/LibCompiler/src/Assembler32x0.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ diff --git a/dev/LibCompiler/src/Assembler64x0.cc b/dev/LibCompiler/src/Assembler64x0.cc index 968b6a5..8789e1b 100644 --- a/dev/LibCompiler/src/Assembler64x0.cc +++ b/dev/LibCompiler/src/Assembler64x0.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ @@ -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) " - "Theater Quality Inc\n"; + "Theater Quality Corp\n"; return 0; } else if (strcmp(argv[i], "--h") == 0) diff --git a/dev/LibCompiler/src/AssemblerAMD64.cc b/dev/LibCompiler/src/AssemblerAMD64.cc index 365163d..aa87887 100644 --- a/dev/LibCompiler/src/AssemblerAMD64.cc +++ b/dev/LibCompiler/src/AssemblerAMD64.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ @@ -138,13 +138,13 @@ TOOLCHAINKIT_MODULE(AssemblerAMD64) if (strcmp(argv[i], "--amd64:ver") == 0 || strcmp(argv[i], "--amd64:v") == 0) { kStdOut << "AssemblerAMD64: AMD64 Assembler Driver.\nAssemblerAMD64: v1.10\nAssemblerAMD64: Copyright " - "(c) Theater Quality Inc\n"; + "(c) Theater Quality Corp\n"; return 0; } else if (strcmp(argv[i], "--amd64:h") == 0) { kStdOut << "AssemblerAMD64: AMD64 Assembler Driver.\nAssemblerAMD64: Copyright (c) 2024 " - "Theater Quality Inc\n"; + "Theater Quality Corp\n"; kStdOut << "--version: Print program version.\n"; kStdOut << "--verbose: Print verbose output.\n"; kStdOut << "--binary: Output as flat binary.\n"; diff --git a/dev/LibCompiler/src/AssemblerPower.cc b/dev/LibCompiler/src/AssemblerPower.cc index a0b5739..5014575 100644 --- a/dev/LibCompiler/src/AssemblerPower.cc +++ b/dev/LibCompiler/src/AssemblerPower.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ @@ -91,13 +91,13 @@ TOOLCHAINKIT_MODULE(AssemblerMainPower64) { kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: " << kDistVersion << "\nAssemblerPower: " "Copyright (c) " - "Theater Quality Inc\n"; + "Theater Quality Corp\n"; return 0; } else if (strcmp(argv[i], "--h") == 0) { kStdOut << "AssemblerPower: POWER64 Assembler Driver.\nAssemblerPower: Copyright (c) 2024 " - "Theater Quality Inc\n"; + "Theater Quality Corp\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/LibCompiler/src/AssemblyFactory.cc b/dev/LibCompiler/src/AssemblyFactory.cc index a0d7bd8..1e6ac48 100644 --- a/dev/LibCompiler/src/AssemblyFactory.cc +++ b/dev/LibCompiler/src/AssemblyFactory.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ @@ -14,7 +14,7 @@ * @version 0.1 * @date 2024-01-27 * - * @copyright Copyright (c) 2024 Theater Quality Inc + * @copyright Copyright (c) 2024 Theater Quality Corp * */ diff --git a/dev/LibCompiler/src/CCompiler64x0.cc b/dev/LibCompiler/src/CCompiler64x0.cc index e831401..aaf56e4 100644 --- a/dev/LibCompiler/src/CCompiler64x0.cc +++ b/dev/LibCompiler/src/CCompiler64x0.cc @@ -2,7 +2,7 @@ * ======================================================== * * cc - * Copyright (C) 2024 Theater Quality Inc, all rights reserved. + * Copyright (C) 2024 Theater Quality Corp, all rights reserved. * * ======================================================== */ @@ -24,7 +24,7 @@ /* C driver */ /* This is part of the LibCompiler. */ -/* (c) Theater Quality Incorporated */ +/* (c) Theater Quality Corporporated */ /// @author EL Mahrouss Amlal (amlel) /// @file 64x0-cc.cxx @@ -1482,7 +1482,7 @@ public: #define kPrintF printf #define kSplashCxx() \ - kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Incorporated\n", kDistVersion) + kPrintF(kWhite "ZKA C Driver, %s, (c) Theater Quality Corporporated\n", kDistVersion) static void cc_print_help() { diff --git a/dev/LibCompiler/src/CCompilerPower64.cc b/dev/LibCompiler/src/CCompilerPower64.cc index 99a3d0f..ab303be 100644 --- a/dev/LibCompiler/src/CCompilerPower64.cc +++ b/dev/LibCompiler/src/CCompilerPower64.cc @@ -2,7 +2,7 @@ * ======================================================== * * CCompilerPower64 - * Copyright (C) 2024 Theater Quality Inc, all rights reserved. + * Copyright (C) 2024 Theater Quality Corp, all rights reserved. * * ======================================================== */ @@ -1502,7 +1502,7 @@ public: #define kPrintF printf #define kSplashCxx() \ - kPrintF(kWhite "cc, %s, (c) Theater Quality Incorporated\n", kDistVersion) + kPrintF(kWhite "cc, %s, (c) Theater Quality Corporporated\n", kDistVersion) static void cc_print_help() { diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc index 0de1b06..a6c515f 100644 --- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc +++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc @@ -2,7 +2,7 @@ * ======================================================== * * c++-drv - * Copyright (C) 2024 Theater Quality Inc, all rights reserved. + * Copyright (C) 2024 Theater Quality Corp, all rights reserved. * * ======================================================== */ @@ -16,7 +16,7 @@ #define kExitNO (EXIT_FAILURE) #define kSplashCxx() \ - kPrintF(kWhite "%s\n", "TQ Media C++ Compiler Driver, (c) 2024 Theater Quality Incorporated, all rights reserved.") + kPrintF(kWhite "%s\n", "TQ Media C++ Compiler Driver, (c) 2024 Theater Quality Corporporated, all rights reserved.") // extern_segment, @autodelete { ... }, fn foo() -> auto { ... } @@ -26,7 +26,7 @@ /* ZKA C++ Compiler */ /* This is part of the LibCompiler. */ -/* (c) Theater Quality Incorporated */ +/* (c) Theater Quality Corporporated */ /// @author EL Mahrouss Amlal (amlel) /// @file CPlusPlusCompilerAMD64.cxx diff --git a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc index 819cfc7..917c39e 100644 --- a/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc +++ b/dev/LibCompiler/src/CPlusPlusCompilerPreProcessor.cc @@ -2,7 +2,7 @@ * ======================================================== * * bpp - * Copyright (C) 2024 Theater Quality Inc, all rights reserved. + * Copyright (C) 2024 Theater Quality Corp, all rights reserved. * * ======================================================== */ @@ -971,13 +971,13 @@ TOOLCHAINKIT_MODULE(CPlusPlusPreprocessorMain) { if (strcmp(argv[index], "--bpp:ver") == 0) { - printf("%s\n", "bpp v1.11, (c) Theater Quality Incorporated"); + printf("%s\n", "bpp v1.11, (c) Theater Quality Corporporated"); return 0; } if (strcmp(argv[index], "--bpp:?") == 0) { - printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) Theater Quality Incorporated"); + printf("%s\n", "ZKA Preprocessor Driver v1.11, (c) Theater Quality Corporporated"); printf("%s\n", "--bpp:working-dir <path>: set directory to working path."); printf("%s\n", "--bpp:include-dir <path>: add directory to include path."); printf("%s\n", "--bpp:def <name> <value>: define a macro."); diff --git a/dev/LibCompiler/src/Detail/AsmUtils.h b/dev/LibCompiler/src/Detail/AsmUtils.h index 0825fa5..4168dea 100644 --- a/dev/LibCompiler/src/Detail/AsmUtils.h +++ b/dev/LibCompiler/src/Detail/AsmUtils.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ diff --git a/dev/LibCompiler/src/Detail/ClUtils.h b/dev/LibCompiler/src/Detail/ClUtils.h index 4596148..5d3ff79 100644 --- a/dev/LibCompiler/src/Detail/ClUtils.h +++ b/dev/LibCompiler/src/Detail/ClUtils.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, all rights reserved ------------------------------------------- */ diff --git a/dev/LibCompiler/src/DynamicLinker64PEF.cc b/dev/LibCompiler/src/DynamicLinker64PEF.cc index 67b6105..5c09494 100644 --- a/dev/LibCompiler/src/DynamicLinker64PEF.cc +++ b/dev/LibCompiler/src/DynamicLinker64PEF.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024 Theater Quality Inc, all rights reserved + Copyright (C) 2024 Theater Quality Corp, 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 Media 64-Bit Linker %s, (c) Theater Quality Incorporated 2024, all rights reserved.\n" +#define kLinkerVersionStr "TQ Media 64-Bit Linker %s, (c) Theater Quality Corporporated 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 @@ TOOLCHAINKIT_MODULE(DynamicLinker64PEF) pef_container.Count = 0UL; pef_container.Kind = is_executable ? LibCompiler::kPefKindExec : LibCompiler::kPefKindDylib; pef_container.SubCpu = kSubArch; - pef_container.Linker = kLinkerId; // Theater Quality Incorporated Linker + pef_container.Linker = kLinkerId; // Theater Quality Corporporated 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/dev/LibCompiler/src/String.cc b/dev/LibCompiler/src/String.cc index 0804c2b..28060fd 100644 --- a/dev/LibCompiler/src/String.cc +++ b/dev/LibCompiler/src/String.cc @@ -2,7 +2,7 @@ * ======================================================== * * LibCompiler - * Copyright (C) 2024 Theater Quality Inc, all rights reserved. + * Copyright (C) 2024 Theater Quality Corp, all rights reserved. * * ======================================================== */ @@ -14,7 +14,7 @@ * @version 0.2 * @date 2024-01-23 * - * @copyright Copyright (c) Theater Quality Incorporated + * @copyright Copyright (c) Theater Quality Corporporated * */ |
