summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 23:49:39 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 23:49:39 +0200
commitaed39642ea46602e16096f93ee163e8dbd53d1b7 (patch)
tree7f5cd179488b6a8a31a206cd248160c5f633624d
parentddd4aa836761ddd5749ec78962b1eff78cb3719f (diff)
MHR-21: :boom: refactor.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
-rw-r--r--64asm.rsrc4
-rw-r--r--64x0-cc.rsrc4
-rw-r--r--Headers/AsmKit/AsmKit.hpp2
-rw-r--r--Headers/AsmKit/CPU/32x0.hpp2
-rw-r--r--Headers/AsmKit/CPU/64x0.hpp2
-rw-r--r--Headers/AsmKit/CPU/amd64.hpp2
-rw-r--r--Headers/CompilerKit.hpp2
-rw-r--r--Headers/Defines.hpp2
-rw-r--r--Headers/ParserKit.hpp2
-rw-r--r--Headers/StdKit/AE.hpp2
-rw-r--r--Headers/StdKit/ErrorID.hpp2
-rw-r--r--Headers/StdKit/ErrorOr.hpp2
-rw-r--r--Headers/StdKit/PEF.hpp2
-rw-r--r--Headers/StdKit/Ref.hpp2
-rw-r--r--Headers/StdKit/String.hpp2
-rw-r--r--Headers/StdKit/XCOFF.hxx2
-rw-r--r--ReadMe.md2
-rw-r--r--SDK/__mpcc_alloca.hxx2
-rw-r--r--SDK/__mpcc_defines.hxx2
-rw-r--r--SDK/__mpcc_exception.hxx2
-rw-r--r--SDK/__mpcc_hint.hxx2
-rw-r--r--SDK/__mpcc_malloc.hxx2
-rw-r--r--Sources/32asm.cc2
-rw-r--r--Sources/64asm.cc4
-rw-r--r--Sources/64x0-cc.cc6
-rw-r--r--Sources/AsmKit.cc4
-rw-r--r--Sources/Detail/asmutils.h2
-rw-r--r--Sources/Detail/compilerutils.h2
-rw-r--r--Sources/String.cc4
-rw-r--r--Sources/bpp.cc6
-rw-r--r--Sources/coff2ae.cc2
-rw-r--r--Sources/cplusplus.cc10
-rw-r--r--Sources/elf2ae.cc2
-rw-r--r--Sources/i64asm.cc6
-rw-r--r--Sources/link.cc8
-rw-r--r--Sources/ppc-cc.cc4
-rw-r--r--Sources/ppcasm.cc7
-rw-r--r--bpp.rsrc4
-rw-r--r--i64asm.rsrc4
-rw-r--r--link.rsrc4
-rw-r--r--posix.make4
-rw-r--r--ppc-cc.rsrc4
-rw-r--r--ppcasm.rsrc4
-rw-r--r--win64.make4
44 files changed, 72 insertions, 73 deletions
diff --git a/64asm.rsrc b/64asm.rsrc
index 44ae486..7c84d45 100644
--- a/64asm.rsrc
+++ b/64asm.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS 64x0 assembler."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewAssembler"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "64asm.exe"
VALUE "ProductName", "NewAssembler"
VALUE "ProductVersion", kDistVersion
diff --git a/64x0-cc.rsrc b/64x0-cc.rsrc
index afa07df..dcec172 100644
--- a/64x0-cc.rsrc
+++ b/64x0-cc.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS 64x0 C compiler."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewC"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "64x0-cc.exe"
VALUE "ProductName", "NewC"
VALUE "ProductVersion", kDistVersion
diff --git a/Headers/AsmKit/AsmKit.hpp b/Headers/AsmKit/AsmKit.hpp
index 2ea4796..23db830 100644
--- a/Headers/AsmKit/AsmKit.hpp
+++ b/Headers/AsmKit/AsmKit.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/AsmKit/CPU/32x0.hpp b/Headers/AsmKit/CPU/32x0.hpp
index a78a04b..44ddaed 100644
--- a/Headers/AsmKit/CPU/32x0.hpp
+++ b/Headers/AsmKit/CPU/32x0.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/AsmKit/CPU/64x0.hpp b/Headers/AsmKit/CPU/64x0.hpp
index a72f72f..352e8c6 100644
--- a/Headers/AsmKit/CPU/64x0.hpp
+++ b/Headers/AsmKit/CPU/64x0.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/AsmKit/CPU/amd64.hpp b/Headers/AsmKit/CPU/amd64.hpp
index 5a8f72a..ee12c8a 100644
--- a/Headers/AsmKit/CPU/amd64.hpp
+++ b/Headers/AsmKit/CPU/amd64.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/CompilerKit.hpp b/Headers/CompilerKit.hpp
index 9e37666..3d5cfc2 100644
--- a/Headers/CompilerKit.hpp
+++ b/Headers/CompilerKit.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/Defines.hpp b/Headers/Defines.hpp
index 01230e6..ac8692b 100644
--- a/Headers/Defines.hpp
+++ b/Headers/Defines.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/ParserKit.hpp b/Headers/ParserKit.hpp
index 68bc431..60ac892 100644
--- a/Headers/ParserKit.hpp
+++ b/Headers/ParserKit.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/StdKit/AE.hpp b/Headers/StdKit/AE.hpp
index ca54671..3075017 100644
--- a/Headers/StdKit/AE.hpp
+++ b/Headers/StdKit/AE.hpp
@@ -2,7 +2,7 @@
* ========================================================
*
* MPCC
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
diff --git a/Headers/StdKit/ErrorID.hpp b/Headers/StdKit/ErrorID.hpp
index 363f4d5..ef1f778 100644
--- a/Headers/StdKit/ErrorID.hpp
+++ b/Headers/StdKit/ErrorID.hpp
@@ -2,7 +2,7 @@
* ========================================================
*
* CompilerKit
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
diff --git a/Headers/StdKit/ErrorOr.hpp b/Headers/StdKit/ErrorOr.hpp
index dbd83ce..d61f3e9 100644
--- a/Headers/StdKit/ErrorOr.hpp
+++ b/Headers/StdKit/ErrorOr.hpp
@@ -2,7 +2,7 @@
* ========================================================
*
* CompilerKit
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
diff --git a/Headers/StdKit/PEF.hpp b/Headers/StdKit/PEF.hpp
index 6f0602c..ee01852 100644
--- a/Headers/StdKit/PEF.hpp
+++ b/Headers/StdKit/PEF.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Headers/StdKit/Ref.hpp b/Headers/StdKit/Ref.hpp
index c4aa2d3..d13f97c 100644
--- a/Headers/StdKit/Ref.hpp
+++ b/Headers/StdKit/Ref.hpp
@@ -3,7 +3,7 @@
* ========================================================
*
* CompilerKit
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
diff --git a/Headers/StdKit/String.hpp b/Headers/StdKit/String.hpp
index adc6a9d..20fd16f 100644
--- a/Headers/StdKit/String.hpp
+++ b/Headers/StdKit/String.hpp
@@ -2,7 +2,7 @@
* ========================================================
*
* CompilerKit
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
diff --git a/Headers/StdKit/XCOFF.hxx b/Headers/StdKit/XCOFF.hxx
index e21a380..b9cc825 100644
--- a/Headers/StdKit/XCOFF.hxx
+++ b/Headers/StdKit/XCOFF.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
File: XCOFF.hpp
Purpose: XCOFF for NewOS.
diff --git a/ReadMe.md b/ReadMe.md
index 2dc803a..4c5f385 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -14,4 +14,4 @@ make all
Author: Amlal El Mahrouss
-##### Copyright Mahrouss Logic, all rights reserved.
+##### Copyright SoftwareLabs, all rights reserved.
diff --git a/SDK/__mpcc_alloca.hxx b/SDK/__mpcc_alloca.hxx
index f56da9f..f15e059 100644
--- a/SDK/__mpcc_alloca.hxx
+++ b/SDK/__mpcc_alloca.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/SDK/__mpcc_defines.hxx b/SDK/__mpcc_defines.hxx
index b335d1e..ff91db1 100644
--- a/SDK/__mpcc_defines.hxx
+++ b/SDK/__mpcc_defines.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/SDK/__mpcc_exception.hxx b/SDK/__mpcc_exception.hxx
index d2ca325..d36aba6 100644
--- a/SDK/__mpcc_exception.hxx
+++ b/SDK/__mpcc_exception.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/SDK/__mpcc_hint.hxx b/SDK/__mpcc_hint.hxx
index 843407e..d775f52 100644
--- a/SDK/__mpcc_hint.hxx
+++ b/SDK/__mpcc_hint.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/SDK/__mpcc_malloc.hxx b/SDK/__mpcc_malloc.hxx
index da08b19..56989f8 100644
--- a/SDK/__mpcc_malloc.hxx
+++ b/SDK/__mpcc_malloc.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/32asm.cc b/Sources/32asm.cc
index e5aa500..4c98645 100644
--- a/Sources/32asm.cc
+++ b/Sources/32asm.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/64asm.cc b/Sources/64asm.cc
index d2568e2..8f42ea2 100644
--- a/Sources/64asm.cc
+++ b/Sources/64asm.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -110,7 +110,7 @@ MPCC_MODULE(NewOSAssembler64000) {
if (argv[i][0] == '-') {
if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) {
kStdOut << "64asm: 64x0 Assembler.\n64asm: v1.10\n64asm: Copyright (c) "
- "2024 Mahrouss Logic.\n";
+ "2024 SoftwareLabs.\n";
return 0;
} else if (strcmp(argv[i], "-h") == 0) {
kStdOut << "64asm: 64x0 Assembler.\n64asm: Copyright (c) 2024 Mahrouss "
diff --git a/Sources/64x0-cc.cc b/Sources/64x0-cc.cc
index c23e3c1..e73bf4d 100644
--- a/Sources/64x0-cc.cc
+++ b/Sources/64x0-cc.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cc
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
@@ -27,7 +27,7 @@
/* C driver */
/* This is part of CodeTools C SDK. */
-/* (c) Mahrouss Logic */
+/* (c) SoftwareLabs */
/// @author Amlal El Mahrouss (amlel)
/// @file 64x0-cc.cc
@@ -1258,7 +1258,7 @@ class AssemblyMountpointCLang final : public CompilerKit::AssemblyInterface {
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "cc, %s, (c) Mahrouss Logic\n", kDistVersion)
+ kPrintF(kWhite "cc, %s, (c) SoftwareLabs\n", kDistVersion)
static void cc_print_help() { kSplashCxx(); }
diff --git a/Sources/AsmKit.cc b/Sources/AsmKit.cc
index b4af817..38ca551 100644
--- a/Sources/AsmKit.cc
+++ b/Sources/AsmKit.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -14,7 +14,7 @@
* @version 0.1
* @date 2024-01-27
*
- * @copyright Copyright (c) 2024, Mahrouss Logic
+ * @copyright Copyright (c) 2024, SoftwareLabs
*
*/
diff --git a/Sources/Detail/asmutils.h b/Sources/Detail/asmutils.h
index 2408998..c0537ad 100644
--- a/Sources/Detail/asmutils.h
+++ b/Sources/Detail/asmutils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/Detail/compilerutils.h b/Sources/Detail/compilerutils.h
index 038f3cf..cde8d34 100644
--- a/Sources/Detail/compilerutils.h
+++ b/Sources/Detail/compilerutils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/String.cc b/Sources/String.cc
index 449c933..6f7603f 100644
--- a/Sources/String.cc
+++ b/Sources/String.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* CompilerKit
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
@@ -14,7 +14,7 @@
* @version 0.2
* @date 2024-01-23
*
- * @copyright Copyright (c) 2024 Mahrouss Logic
+ * @copyright Copyright (c) 2024 SoftwareLabs
*
*/
diff --git a/Sources/bpp.cc b/Sources/bpp.cc
index 1e15366..a988693 100644
--- a/Sources/bpp.cc
+++ b/Sources/bpp.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* bpp
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
@@ -812,12 +812,12 @@ MPCC_MODULE(NewOSPreprocessor) {
if (argv[index][0] == '-') {
if (strcmp(argv[index], "-v") == 0) {
- printf("%s\n", "bpp v1.11, (c) Mahrouss Logic");
+ printf("%s\n", "bpp v1.11, (c) SoftwareLabs");
return 0;
}
if (strcmp(argv[index], "-h") == 0) {
- printf("%s\n", "bpp v1.11, (c) Mahrouss Logic");
+ printf("%s\n", "bpp v1.11, (c) SoftwareLabs");
printf("%s\n", "-working-dir <path>: set directory to working path.");
printf("%s\n", "-include-dir <path>: add directory to include path.");
printf("%s\n", "-def <name> <value>: def macro.");
diff --git a/Sources/coff2ae.cc b/Sources/coff2ae.cc
index 952be69..4b1545b 100644
--- a/Sources/coff2ae.cc
+++ b/Sources/coff2ae.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/cplusplus.cc b/Sources/cplusplus.cc
index e729f54..c464b9f 100644
--- a/Sources/cplusplus.cc
+++ b/Sources/cplusplus.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* ccplus
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
@@ -14,7 +14,7 @@
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "%s\n", "Mahrouss C++ Compiler, Copyright Mahrouss Logic.")
+ kPrintF(kWhite "%s\n", "LightSpeed C++ Compiler, Copyright SoftwareLabs.")
#include <Headers/AsmKit/CPU/amd64.hpp>
#include <Headers/ParserKit.hpp>
@@ -29,9 +29,9 @@
#define kOk 0
-/* Mahrouss Logic C++ driver */
+/* SoftwareLabs C++ driver */
/* This is part of CodeTools C++ compiler. */
-/* (c) Mahrouss Logic */
+/* (c) SoftwareLabs */
// @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 Mahrouss Logic C++ */
+/* @brief C++ compiler backend for SoftwareLabs C++ */
class CompilerBackendCPlusPlus final : public ParserKit::CompilerBackend {
public:
explicit CompilerBackendCPlusPlus() = default;
diff --git a/Sources/elf2ae.cc b/Sources/elf2ae.cc
index 77568dc..5f838be 100644
--- a/Sources/elf2ae.cc
+++ b/Sources/elf2ae.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Sources/i64asm.cc b/Sources/i64asm.cc
index 4f5d885..53ca13e 100644
--- a/Sources/i64asm.cc
+++ b/Sources/i64asm.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -160,11 +160,11 @@ MPCC_MODULE(NewOSAssemblerAMD64) {
if (argv[i][0] == '-') {
if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) {
kStdOut << "i64asm: AMD64 Assembler.\ni64asm: v1.10\ni64asm: Copyright "
- "(c) 2024 Mahrouss Logic.\n";
+ "(c) 2024 SoftwareLabs.\n";
return 0;
} else if (strcmp(argv[i], "-h") == 0) {
kStdOut << "i64asm: AMD64 Assembler.\ni64asm: Copyright (c) 2024 "
- "Mahrouss Logic.\n";
+ "SoftwareLabs.\n";
kStdOut << "-version: Print program version.\n";
kStdOut << "-verbose: Print verbose output.\n";
kStdOut << "-binary: Output as flat binary.\n";
diff --git a/Sources/link.cc b/Sources/link.cc
index c44350a..13e1db1 100644
--- a/Sources/link.cc
+++ b/Sources/link.cc
@@ -1,12 +1,12 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
/// @file link.cc
/// @author Amlal El Mahrouss (amlel)
-/// @brief Mahrouss Linker.
+/// @brief SoftwareLabs Linker.
/// Last Rev: Sat Feb 24 CET 2024
@@ -35,7 +35,7 @@
#include <fstream>
#include <iostream>
-#define kLinkerVersion "Mahrouss Linker %s, (c) Mahrouss Logic 2024\n"
+#define kLinkerVersion "SoftwareLabs Linker %s, (c) SoftwareLabs 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; // Mahrouss Logic Linker
+ pef_container.Linker = kLinkerId; // SoftwareLabs 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/Sources/ppc-cc.cc b/Sources/ppc-cc.cc
index 44489da..5bdb53e 100644
--- a/Sources/ppc-cc.cc
+++ b/Sources/ppc-cc.cc
@@ -2,7 +2,7 @@
* ========================================================
*
* cc
- * Copyright Mahrouss Logic, all rights reserved.
+ * Copyright SoftwareLabs, all rights reserved.
*
* ========================================================
*/
@@ -1272,7 +1272,7 @@ class AssemblyMountpointCLang final : public CompilerKit::AssemblyInterface {
#define kPrintF printf
#define kSplashCxx() \
- kPrintF(kWhite "cc, %s, (c) Mahrouss Logic\n", kDistVersion)
+ kPrintF(kWhite "cc, %s, (c) SoftwareLabs\n", kDistVersion)
static void cc_print_help() { kSplashCxx(); }
diff --git a/Sources/ppcasm.cc b/Sources/ppcasm.cc
index fcf0a5d..6c1f367 100644
--- a/Sources/ppcasm.cc
+++ b/Sources/ppcasm.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Mahrouss Logic
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -114,12 +114,11 @@ MPCC_MODULE(NewOSAssemblerPowerPC) {
if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) {
kStdOut << "ppcasm: POWER Assembler.\nppcasm: " << kDistVersion << "\nppcasm: "
"Copyright (c) "
- "2024 Mahrouss Logic.\n";
+ "2024 SoftwareLabs.\n";
return 0;
} else if (strcmp(argv[i], "-h") == 0) {
kStdOut << "ppcasm: POWER Assembler.\nppcasm: Copyright (c) 2024 "
- "Mahrouss "
- "Logic.\n";
+ "SoftwareLabs.\n";
kStdOut << "-version: Print program version.\n";
kStdOut << "-verbose: Print verbose output.\n";
kStdOut << "-binary: Output as flat binary.\n";
diff --git a/bpp.rsrc b/bpp.rsrc
index 255f805..6ed8ac5 100644
--- a/bpp.rsrc
+++ b/bpp.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS Assembler Preprocessor."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewPreprocessor"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "bpp.exe"
VALUE "ProductName", "NewPreprocessor"
VALUE "ProductVersion", kDistVersion
diff --git a/i64asm.rsrc b/i64asm.rsrc
index 0a76070..2f981a6 100644
--- a/i64asm.rsrc
+++ b/i64asm.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS AMD64 assembler."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewAssembler"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "i64asm.exe"
VALUE "ProductName", "NewAssembler"
VALUE "ProductVersion", kDistVersion
diff --git a/link.rsrc b/link.rsrc
index 4a0ad5d..9661b04 100644
--- a/link.rsrc
+++ b/link.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS linker."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewLinker"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "link.exe"
VALUE "ProductName", "NewLinker"
VALUE "ProductVersion", kDistVersion
diff --git a/posix.make b/posix.make
index e8c877c..9138ae3 100644
--- a/posix.make
+++ b/posix.make
@@ -2,7 +2,7 @@
# ========================================================
#
# MPCC
- # Copyright Mahrouss Logic, all rights reserved.
+ # Copyright SoftwareLabs, all rights reserved.
#
# ========================================================
#
@@ -72,7 +72,7 @@ linker:
help:
@echo "Compiler - Mahrouss Compilers."
@echo "Preprocessor - Mahrouss Preprocessors."
- @echo "linker - Mahrouss Linkers."
+ @echo "linker - SoftwareLabs Linkers."
@echo "clean - Clean objects and executables."
.PHONY: clean
diff --git a/ppc-cc.rsrc b/ppc-cc.rsrc
index ea941f1..031dd4e 100644
--- a/ppc-cc.rsrc
+++ b/ppc-cc.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS POWER C compiler."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewC"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "ppc-cc.exe"
VALUE "ProductName", "NewC"
VALUE "ProductVersion", kDistVersion
diff --git a/ppcasm.rsrc b/ppcasm.rsrc
index 552479f..4d3affe 100644
--- a/ppcasm.rsrc
+++ b/ppcasm.rsrc
@@ -10,11 +10,11 @@ BEGIN
BEGIN
BLOCK "080904E4"
BEGIN
- VALUE "CompanyName", "Mahrouss-Logic"
+ VALUE "CompanyName", "SoftwareLabs"
VALUE "FileDescription", "NewOS POWER assembler."
VALUE "FileVersion", kDistVersion
VALUE "InternalName", "NewAssembler"
- VALUE "LegalCopyright", "Mahrouss-Logic"
+ VALUE "LegalCopyright", "SoftwareLabs"
VALUE "OriginalFilename", "ppcasm.exe"
VALUE "ProductName", "NewAssembler"
VALUE "ProductVersion", kDistVersion
diff --git a/win64.make b/win64.make
index 5d49218..297dbb2 100644
--- a/win64.make
+++ b/win64.make
@@ -2,7 +2,7 @@
# ========================================================
#
# MPCC
- # Copyright Mahrouss Logic, all rights reserved.
+ # Copyright SoftwareLabs, all rights reserved.
#
# ========================================================
#
@@ -80,7 +80,7 @@ linker:
help:
@echo "Compiler - Mahrouss Compilers."
@echo "Preprocessor - Mahrouss Preprocessors."
- @echo "linker - Mahrouss Linkers."
+ @echo "linker - SoftwareLabs Linkers."
@echo "clean - Clean objects and executables."
.PHONY: clean