diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-04 10:13:50 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-04 10:13:50 +0100 |
| commit | 4a6ac884b50b7103b41a39800d16ef785e365245 (patch) | |
| tree | ddd02b2a427871913c9adb5673f4c2a7fc9fa19a /CompilerDriver | |
| parent | b03f3d83efcbc012c4153da14eaf158bb50031d2 (diff) | |
meta: credit me as the author.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerDriver')
| -rw-r--r-- | CompilerDriver/cc.cc | 4 | ||||
| -rw-r--r-- | CompilerDriver/ccplus.cc | 8 | ||||
| -rw-r--r-- | CompilerDriver/cpp.cc | 4 | ||||
| -rw-r--r-- | CompilerDriver/ld.cc | 1 | ||||
| -rw-r--r-- | CompilerDriver/masm.cc | 1 |
5 files changed, 16 insertions, 2 deletions
diff --git a/CompilerDriver/cc.cc b/CompilerDriver/cc.cc index 899734b..e908dc5 100644 --- a/CompilerDriver/cc.cc +++ b/CompilerDriver/cc.cc @@ -22,6 +22,10 @@ /* This is part of MP-UX C SDK. */ /* (c) Western Company */ +// @author Amlal El Mahrouss (amlel) +// @file cc.cc +// @brief Optimized C Compiler. + ///////////////////// // ANSI ESCAPE CODES diff --git a/CompilerDriver/ccplus.cc b/CompilerDriver/ccplus.cc index f9f94e4..c87b8ee 100644 --- a/CompilerDriver/ccplus.cc +++ b/CompilerDriver/ccplus.cc @@ -20,10 +20,14 @@ #define kOk 0 -/* Western Company C driver */ -/* This is part of MP-UX C SDK. */ +/* Western Company C++ driver */ +/* This is part of MP-UX C++ SDK. */ /* (c) Western Company */ +// @author Amlal El Mahrouss (amlel) +// @file cc.cc +// @brief Optimized C++ Compiler. + ///////////////////// // ANSI ESCAPE CODES diff --git a/CompilerDriver/cpp.cc b/CompilerDriver/cpp.cc index 6986e27..29507b7 100644 --- a/CompilerDriver/cpp.cc +++ b/CompilerDriver/cpp.cc @@ -13,6 +13,10 @@ #include <iostream> #include <fstream> +// @author Amlal El Mahrouss (amlel) +// @file cpp.cc +// @brief C Preprocessor. + typedef Int32(*cpp_parser_fn_t)(std::string& line, std::ifstream& hdr_file, std::ofstream& pp_out); ///////////////////////////////////////////////////////////////////////////////////////// diff --git a/CompilerDriver/ld.cc b/CompilerDriver/ld.cc index d9e1ffe..f1ac535 100644 --- a/CompilerDriver/ld.cc +++ b/CompilerDriver/ld.cc @@ -8,6 +8,7 @@ */ // @file ld.cxx +// @author Amlal El Mahrouss (amlel) // @brief AE to PEF linker. // Use this to compile to PEF compliant OS. diff --git a/CompilerDriver/masm.cc b/CompilerDriver/masm.cc index 849e141..0675dba 100644 --- a/CompilerDriver/masm.cc +++ b/CompilerDriver/masm.cc @@ -10,6 +10,7 @@ ///////////////////////////////////////////////////////////////////////////////////////// // @file masm.cxx +// @author Amlal El Mahrouss // @brief MP-UX 64x0 Assembler. // REMINDER: when dealing with an undefined symbol use (string size):ld:(string) |
