diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-02-28 19:42:13 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-02-28 19:42:13 +0100 |
| commit | 77ff2d7a283edc898a4d0c271da62227bcde302c (patch) | |
| tree | 96c1867587fb840a1ec7192370ff1daffc7425d8 | |
| parent | 668d324fab71e2c5b18e123cbaf4a9bf00fa689d (diff) | |
Toolchain: cleanup.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | Private/Toolchain/32asm.cc | 7 | ||||
| -rw-r--r-- | Private/Toolchain/64asm.cc | 8 | ||||
| -rw-r--r-- | Private/Toolchain/i64asm.cc | 7 | ||||
| -rw-r--r-- | Private/Toolchain/link.cc | 8 |
4 files changed, 0 insertions, 30 deletions
diff --git a/Private/Toolchain/32asm.cc b/Private/Toolchain/32asm.cc index 642b3d0..cbe0321 100644 --- a/Private/Toolchain/32asm.cc +++ b/Private/Toolchain/32asm.cc @@ -51,12 +51,5 @@ ///////////////////////////////////////////////////////////////////////////////////////// MPCC_MODULE(HCoreAssembler32000) { - kStdOut << "MahroussLogic (R) Visual Assembler."; - kStdOut << "Warning: This computer program is protected by copyright " - "law and international treaties.\r\nUnauthorized reproduction " - "or distribution of this program, or any portion of it,\r\nmay " - "result in severe civil and criminal penalties, and will be " - "prosecuted to the maximum extent possible under the law.\r\n\r\n"; - return 0; } diff --git a/Private/Toolchain/64asm.cc b/Private/Toolchain/64asm.cc index 0ee6fe7..982de95 100644 --- a/Private/Toolchain/64asm.cc +++ b/Private/Toolchain/64asm.cc @@ -104,14 +104,6 @@ void print_warning(std::string reason, const std::string &file) noexcept { ///////////////////////////////////////////////////////////////////////////////////////// MPCC_MODULE(HCoreAssembler64000) { - kStdOut << "MahroussLogic (R) Visual Assembler.\r\n"; - kStdOut << "Warning: This computer program is protected by copyright " - "law and international treaties.\r\nUnauthorized reproduction " - "or distribution of this program, or any portion of it,\r\nmay " - "result in severe civil and criminal penalties, and will be " - "prosecuted to the maximum extent possible under the law.\r\n\r\n"; - - for (size_t i = 1; i < argc; ++i) { if (argv[i][0] == '-') { if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) { diff --git a/Private/Toolchain/i64asm.cc b/Private/Toolchain/i64asm.cc index 9722d5c..8a36dbe 100644 --- a/Private/Toolchain/i64asm.cc +++ b/Private/Toolchain/i64asm.cc @@ -105,13 +105,6 @@ void print_warning(std::string reason, const std::string &file) noexcept { ///////////////////////////////////////////////////////////////////////////////////////// MPCC_MODULE(HCoreAssemblerAMD64) { - kStdOut << "MahroussLogic (R) Visual Assembler.\r\n"; - kStdOut << "Warning: This computer program is protected by copyright " - "law and international treaties.\r\nUnauthorized reproduction " - "or distribution of this program, or any portion of it,\r\nmay " - "result in severe civil and criminal penalties, and will be " - "prosecuted to the maximum extent possible under the law.\r\n\r\n"; - //////////////// CPU OPCODES BEGIN //////////////// std::string opcodes_jump[kJumpLimit] = { diff --git a/Private/Toolchain/link.cc b/Private/Toolchain/link.cc index 7ddea64..c1b49e6 100644 --- a/Private/Toolchain/link.cc +++ b/Private/Toolchain/link.cc @@ -71,14 +71,6 @@ static std::vector<std::string> kObjectList; static std::vector<char> kObjectBytes; MPCC_MODULE(HCoreLinker) { - kStdOut << "MahroussLogic (R) Visual Linker.\r\n"; - kStdOut << "Warning: This computer program is protected by copyright " - "law and international treaties.\r\nUnauthorized reproduction " - "or distribution of this program, or any portion of it,\r\nmay " - "result in severe civil and criminal penalties, and will be " - "prosecuted to the maximum extent possible under the law.\r\n\r\n"; - - bool is_executable = true; /** |
