From c6d1383155700a9ee10200e2023e6ed06243a698 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 3 Jun 2024 08:11:20 +0200 Subject: meta: cplusplus: refactors. Signed-off-by: Amlal El Mahrouss --- Sources/cplusplus.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Sources/cplusplus.cc') 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 #include @@ -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"); } ///////////////////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3