diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-01 07:22:42 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-05-01 07:22:42 +0200 |
| commit | fcf37e1243cf028f5812be81c9b1983d26d41874 (patch) | |
| tree | a5cb40b419e393689213c5b6a4dfb7e16f0b7385 /Sources | |
| parent | a63d034fdab18dd14ee34bc438f4c6cf72a839d7 (diff) | |
MHR-21: Fix documentation.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Sources')
| -rw-r--r-- | Sources/64x0-cc.cc | 4 | ||||
| -rw-r--r-- | Sources/String.cc | 2 | ||||
| -rw-r--r-- | Sources/i64asm.cc | 16 | ||||
| -rw-r--r-- | Sources/link.cc | 8 | ||||
| -rw-r--r-- | Sources/ppc-cc.cc | 9 | ||||
| -rw-r--r-- | Sources/ppcasm.cc | 12 |
6 files changed, 19 insertions, 32 deletions
diff --git a/Sources/64x0-cc.cc b/Sources/64x0-cc.cc index b56ad86..7e6b116 100644 --- a/Sources/64x0-cc.cc +++ b/Sources/64x0-cc.cc @@ -25,8 +25,6 @@ #define kOk 0 -/// TODO: support structures, else if, else, ., -> - /* C driver */ /* This is part of CodeTools C SDK. */ /* (c) Mahrouss Logic */ @@ -35,6 +33,8 @@ /// @file 64x0-cc.cc /// @brief 64x0 C Compiler. +/// TODO: support structures, else if, else, . and -> + ///////////////////// // ANSI ESCAPE CODES diff --git a/Sources/String.cc b/Sources/String.cc index e8edda7..449c933 100644 --- a/Sources/String.cc +++ b/Sources/String.cc @@ -10,7 +10,7 @@ /** * @file String.cc * @author Amlal (amlal@mahrouss-logic.com) - * @brief C++ String Manip API. + * @brief C++ string manipulation API. * @version 0.2 * @date 2024-01-23 * diff --git a/Sources/i64asm.cc b/Sources/i64asm.cc index dee3053..4f5d885 100644 --- a/Sources/i64asm.cc +++ b/Sources/i64asm.cc @@ -6,19 +6,19 @@ ///////////////////////////////////////////////////////////////////////////////////////// -/// bugs: 0 +/// @file i64asm.cxx +/// @author Amlal El Mahrouss +/// @brief AMD64 Assembler. -/// feature request: 1 -/// Encode registers in mov, add, xor... +/// REMINDER: when dealing with an undefined symbol use (string +/// size):LinkerFindSymbol:(string) so that ld will look for it. ///////////////////////////////////////////////////////////////////////////////////////// -// @file i64asm.cxx -// @author Amlal El Mahrouss -// @brief AMD64 Assembler. +/// bugs: 0 -// REMINDER: when dealing with an undefined symbol use (string -// size):LinkerFindSymbol:(string) so that ld will look for it. +/// feature request: 1 +/// Encode registers in mov, add, xor... ///////////////////////////////////////////////////////////////////////////////////////// diff --git a/Sources/link.cc b/Sources/link.cc index 2725598..7e79ef2 100644 --- a/Sources/link.cc +++ b/Sources/link.cc @@ -4,13 +4,11 @@ ------------------------------------------- */ -/// BUGS: 0 - -/// Last Rev: Sat Feb 24 CET 2024 - /// @file link.cc /// @author Amlal El Mahrouss (amlel) -/// @brief Linker. +/// @brief Mahrouss Linker. + +/// Last Rev: Sat Feb 24 CET 2024 // README: Do not look up for anything with .code64/.data64/.zero64! // It will be loaded when program will start up! diff --git a/Sources/ppc-cc.cc b/Sources/ppc-cc.cc index 8c8909c..3667ca2 100644 --- a/Sources/ppc-cc.cc +++ b/Sources/ppc-cc.cc @@ -7,9 +7,6 @@ * ======================================================== */ -/// BUGS: 0 -/// TODO: Structs and enums. - #include <Headers/AsmKit/CPU/ppc.hpp> #include <Headers/ParserKit.hpp> #include <Headers/UUID.hpp> @@ -25,12 +22,6 @@ #define kOk 0 -/// TODO: support structures, else if, else, ., -> - -/* C driver */ -/* This is part of CodeTools C SDK. */ -/* (c) Mahrouss Logic */ - /// @author Amlal El Mahrouss (amlel) /// @file cc.cc /// @brief POWER C Compiler. diff --git a/Sources/ppcasm.cc b/Sources/ppcasm.cc index 3260662..fcf0a5d 100644 --- a/Sources/ppcasm.cc +++ b/Sources/ppcasm.cc @@ -4,16 +4,14 @@ ------------------------------------------- */ -/// BUGS: 0 - ///////////////////////////////////////////////////////////////////////////////////////// -// @file ppcasm.cxx -// @author Amlal El Mahrouss -// @brief POWER Assembler. +/// @file ppcasm.cxx +/// @author Amlal El Mahrouss +/// @brief POWER Assembler. -// REMINDER: when dealing with an undefined symbol use (string -// size):LinkerFindSymbol:(string) so that li will look for it. +/// REMINDER: when dealing with an undefined symbol use (string +/// size):LinkerFindSymbol:(string) so that li will look for it. ///////////////////////////////////////////////////////////////////////////////////////// |
