diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-03 08:11:20 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-03 08:11:20 +0200 |
| commit | c6d1383155700a9ee10200e2023e6ed06243a698 (patch) | |
| tree | 617d9a80ceb8b324c20948ef27ba779ba51c2a73 | |
| parent | 68b1c532bad643ca983b37e29d6621bd8b957d69 (diff) | |
meta: cplusplus: refactors.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | Sources/cplusplus.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Sources/cplusplus.cc b/Sources/cplusplus.cc index 72b654a..97b6a82 100644 --- a/Sources/cplusplus.cc +++ b/Sources/cplusplus.cc @@ -14,7 +14,7 @@ #define kPrintF printf #define kSplashCxx() \ - kPrintF(kWhite "%s\n", "LightSpeed C++ Compiler, Copyright SoftwareLabs.") + kPrintF(kWhite "%s\n", "SoftwareLabs C++ Compiler, Copyright SoftwareLabs.") #include <Common/AsmKit/CPU/amd64.hpp> #include <Common/ParserKit.hpp> @@ -667,10 +667,10 @@ public: (*kState.fOutputAssembly) << "; Path: " << src_file << "\n"; (*kState.fOutputAssembly) - << "; Language: MPCC assembly. (Generated from C++)\n"; - (*kState.fOutputAssembly) << "; Date: " << fmt << "\n\n"; - (*kState.fOutputAssembly) << "#bits 64\n\n#org 0x1000000" - << "\n\n"; + << "; Language: AMD64 assembly. (Generated from C++)\n"; + (*kState.fOutputAssembly) << "; Date: " << fmt << "\n"; + (*kState.fOutputAssembly) << "#bits 64\n#org 0x1000000" + << "\n"; ParserKit::SyntaxLeafList syntax; @@ -704,7 +704,7 @@ static void cxx_print_help() { kSplashCxx(); kPrintF("%s", "No help available, see:\n"); - kPrintF("%s", "www.el-mahrouss-logic.com/softwarelabs/developer/newos/cplusplus\n"); + kPrintF("%s", "www.softwarelabs.com/developer/cplusplus\n"); } ///////////////////////////////////////////////////////////////////////////////////////// |
