diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-07 12:17:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-07 12:21:39 +0100 |
| commit | 282b4694b7199fe4905761965bdf5ddfdeefbf28 (patch) | |
| tree | 7e399b877698e8f09f500fc07fc46dc4df7b0a81 /CompilerDriver/ld.cc | |
| parent | 3f62373bd7903836f51869a313033f401ee24261 (diff) | |
compilers: introducing bccl, Binary Compatible Computer Language.
masm: fix add,dec and some issues regarding labels.
mpcc: is now a BCCL/C++ compiler.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerDriver/ld.cc')
| -rw-r--r-- | CompilerDriver/ld.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/CompilerDriver/ld.cc b/CompilerDriver/ld.cc index 0cbf84c..b4d8a5e 100644 --- a/CompilerDriver/ld.cc +++ b/CompilerDriver/ld.cc @@ -9,8 +9,7 @@ // @file ld.cxx // @author Amlal El Mahrouss (amlel) -// @brief AE to PEF linker. -// Use this to compile to PEF compliant OS. +// @brief MP-UX linker. // README: Do not look up for anything with .text/.data/.page_zero! // It will be loaded when program will start up! @@ -31,9 +30,9 @@ //! @brief standard PEF entry. #define kPefStart "__start" -#define kToolVersion "ld v1.17, (c) Mahrouss Logic" +#define kToolVersion "ld v1.171, (c) Mahrouss Logic" -#define StringCompare(dst, src) strcmp(dst, src) +#define StringCompare(DST, SRC) strcmp(DST, SRC) #define kPefNoCpu 0U #define kPefNoSubCpu 0U |
