summaryrefslogtreecommitdiffhomepage
path: root/CompilerDriver
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-06 09:16:11 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-06 09:16:11 +0100
commit0507ce6ab5b7bd126ab847a1df0930c05a5b5197 (patch)
treefa7ae916ecb8df28d593c710568caeaf3542fccd /CompilerDriver
parentc237b956070bfb63511d865b0053509b16fa85a3 (diff)
meta: rebrand to Mahrouss Logic.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerDriver')
-rw-r--r--CompilerDriver/cc.cc6
-rw-r--r--CompilerDriver/ccplus.cc10
-rw-r--r--CompilerDriver/cpp.cc6
-rw-r--r--CompilerDriver/ld.cc6
-rw-r--r--CompilerDriver/makefile2
-rw-r--r--CompilerDriver/masm.cc6
6 files changed, 18 insertions, 18 deletions
diff --git a/CompilerDriver/cc.cc b/CompilerDriver/cc.cc
index 97e7b23..7be9c35 100644
--- a/CompilerDriver/cc.cc
+++ b/CompilerDriver/cc.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cc
- * Copyright Western Company, all rights reserved.
+ * Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
@@ -22,7 +22,7 @@
/* Optimized C driver */
/* This is part of MP-UX C SDK. */
-/* (c) Western Company */
+/* (c) Mahrouss Logic */
// @author Amlal El Mahrouss (amlel)
// @file cc.cc
@@ -1840,7 +1840,7 @@ public:
/////////////////////////////////////////////////////////////////////////////////////////
#define kPrintF printf
-#define kSplashCxx() kPrintF(kWhite "%s\n", "cc, v1.14, (c) Western Company")
+#define kSplashCxx() kPrintF(kWhite "%s\n", "cc, v1.14, (c) Mahrouss Logic")
static void cc_print_help()
{
diff --git a/CompilerDriver/ccplus.cc b/CompilerDriver/ccplus.cc
index 4cfd9de..d63ca1d 100644
--- a/CompilerDriver/ccplus.cc
+++ b/CompilerDriver/ccplus.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* ccplus
- * Copyright Western Company, all rights reserved.
+ * Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
@@ -20,9 +20,9 @@
#define kOk 0
-/* Western Company C++ driver */
+/* Mahrouss Logic C++ driver */
/* This is part of MP-UX C++ SDK. */
-/* (c) Western Company */
+/* (c) Mahrouss Logic */
// @author Amlal El Mahrouss (amlel)
// @file cc.cc
@@ -152,7 +152,7 @@ static bool kOnForLoop = false;
static bool kInBraces = false;
static size_t kBracesCount = 0UL;
-/* @brief C compiler backend for Western Company C */
+/* @brief C compiler backend for Mahrouss Logic C */
class CompilerBackendClang final : public ParserKit::CompilerBackend
{
public:
@@ -482,7 +482,7 @@ public:
/////////////////////////////////////////////////////////////////////////////////////////
#define kPrintF printf
-#define kSplashCxx() kPrintF(kWhite "%s\n", "ccplus, v1.14, (c) Western Company.")
+#define kSplashCxx() kPrintF(kWhite "%s\n", "ccplus, v1.14, (c) Mahrouss Logic.")
static void cxx_print_help()
{
diff --git a/CompilerDriver/cpp.cc b/CompilerDriver/cpp.cc
index 3b6d914..4a23ef0 100644
--- a/CompilerDriver/cpp.cc
+++ b/CompilerDriver/cpp.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cpp
- * Copyright Western Company, all rights reserved.
+ * Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
@@ -930,14 +930,14 @@ int main(int argc, char** argv)
if (strcmp(argv[index], "-v") == 0 ||
strcmp(argv[index], "--version") == 0)
{
- printf("%s\n", "cpp v1.11, (c) Western Company");
+ printf("%s\n", "cpp v1.11, (c) Mahrouss Logic");
return 0;
}
if (strcmp(argv[index], "-h") == 0 ||
strcmp(argv[index], "--help") == 0)
{
- printf("%s\n", "cpp v1.11, (c) Western Company");
+ printf("%s\n", "cpp v1.11, (c) Mahrouss Logic");
printf("%s\n", "--working-dir: set directory to working path.");
printf("%s\n", "--include-dir: add directory to include path.");
printf("%s\n", "--define: define macro.");
diff --git a/CompilerDriver/ld.cc b/CompilerDriver/ld.cc
index 557fb64..0cbf84c 100644
--- a/CompilerDriver/ld.cc
+++ b/CompilerDriver/ld.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* C++Kit
- * Copyright Western Company, all rights reserved.
+ * Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
@@ -31,7 +31,7 @@
//! @brief standard PEF entry.
#define kPefStart "__start"
-#define kToolVersion "ld v1.17, (c) Western Company"
+#define kToolVersion "ld v1.17, (c) Mahrouss Logic"
#define StringCompare(dst, src) strcmp(dst, src)
@@ -191,7 +191,7 @@ int main(int argc, char** argv)
pef_container.Count = 0UL;
pef_container.Kind = CompilerKit::kPefKindExec;
pef_container.SubCpu = kSubArch;
- pef_container.Linker = kPefLinkerNumId; // Western Company Linker
+ pef_container.Linker = kPefLinkerNumId; // 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/CompilerDriver/makefile b/CompilerDriver/makefile
index 9dffbf1..740be21 100644
--- a/CompilerDriver/makefile
+++ b/CompilerDriver/makefile
@@ -2,7 +2,7 @@
# ========================================================
#
# C++Kit
- # Copyright Western Company, all rights reserved.
+ # Copyright Mahrouss Logic, all rights reserved.
#
# ========================================================
#
diff --git a/CompilerDriver/masm.cc b/CompilerDriver/masm.cc
index 2d227e0..aab621c 100644
--- a/CompilerDriver/masm.cc
+++ b/CompilerDriver/masm.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* C++Kit
- * Copyright Western Company, all rights reserved.
+ * Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
@@ -123,13 +123,13 @@ int main(int argc, char** argv)
{
if (strcmp(argv[i], "-v") == 0)
{
- kStdOut << "masm: The MP-UX Assembler.\nmasm: v1.10\nmasm: Copyright (c) 2023 Western Company.\n";
+ kStdOut << "masm: The MP-UX Assembler.\nmasm: v1.10\nmasm: Copyright (c) 2023 Mahrouss Logic.\n";
return 0;
}
if (strcmp(argv[i], "-h") == 0)
{
- kStdOut << "masm: The MP-UX Assembler.\nmasm: Copyright (c) 2023 Western Company.\n";
+ kStdOut << "masm: The MP-UX Assembler.\nmasm: Copyright (c) 2023 Mahrouss Logic.\n";
kStdOut << "-v: Print program version.\n";
kStdOut << "-verbose: Print verbose output.\n";
kStdOut << "-m64000: Compile for the X64000 instruction set.\n";