diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-02 22:11:02 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-02 22:11:02 +0100 |
| commit | 5a76ab8976b63a7f27b244d31db0ee1ffdc53fde (patch) | |
| tree | 4c46aa478452cb707b22711517d93139879fd0ba /CompilerDriver | |
| parent | 4798a0ca3d2d63c451afac9d15bd0834ea83094e (diff) | |
[toolchain] rework some parts of the ISA (logisim)
also renamed newcpu.hpp to 64k.hpp
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerDriver')
| -rw-r--r-- | CompilerDriver/cc.cxx | 2 | ||||
| -rw-r--r-- | CompilerDriver/ccplus.cxx | 2 | ||||
| -rw-r--r-- | CompilerDriver/ld.cxx | 6 | ||||
| -rw-r--r-- | CompilerDriver/masm.cxx | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/CompilerDriver/cc.cxx b/CompilerDriver/cc.cxx index 8fc35e6..66a8294 100644 --- a/CompilerDriver/cc.cxx +++ b/CompilerDriver/cc.cxx @@ -13,7 +13,7 @@ #include <fstream> #include <iostream> #include <uuid/uuid.h> -#include <C++Kit/AsmKit/Arch/NewCPU.hpp> +#include <C++Kit/AsmKit/Arch/64k.hpp> #include <C++Kit/ParserKit.hpp> #define kOk 0 diff --git a/CompilerDriver/ccplus.cxx b/CompilerDriver/ccplus.cxx index a6bd950..e028326 100644 --- a/CompilerDriver/ccplus.cxx +++ b/CompilerDriver/ccplus.cxx @@ -14,7 +14,7 @@ #include <iostream> #include <stack> #include <utility> -#include <C++Kit/AsmKit/Arch/NewCPU.hpp> +#include <C++Kit/AsmKit/Arch/64k.hpp> #include <C++Kit/ParserKit.hpp> #define kOk 0 diff --git a/CompilerDriver/ld.cxx b/CompilerDriver/ld.cxx index a74e62e..664803d 100644 --- a/CompilerDriver/ld.cxx +++ b/CompilerDriver/ld.cxx @@ -259,7 +259,7 @@ int main(int argc, char** argv) std::size_t cnt = ae_header.fCount; if (kVerbose) - kStdOut << "ld: AE: header found, record count: " << cnt << "\n"; + kStdOut << "ld: object header found, record count: " << cnt << "\n"; pef_container.Count = cnt; @@ -308,7 +308,7 @@ ld_mark_header: command_header.Size = ae_records[ae_record_index].fSize; if (kVerbose) - kStdOut << "ld: AE: record: " << ae_records[ae_record_index].fName << " was marked.\n"; + kStdOut << "ld: object record: " << ae_records[ae_record_index].fName << " was marked.\n"; pef_command_hdrs.emplace_back(command_header); } @@ -582,4 +582,4 @@ ld_continue_search: return 0; } -// Last rev 28-12-23
\ No newline at end of file +// Last rev 2-1-23
\ No newline at end of file diff --git a/CompilerDriver/masm.cxx b/CompilerDriver/masm.cxx index c7662a9..ed15bf3 100644 --- a/CompilerDriver/masm.cxx +++ b/CompilerDriver/masm.cxx @@ -18,7 +18,7 @@ ///////////////////////////////////////////////////////////////////////////////////////// -#include <C++Kit/AsmKit/Arch/NewCPU.hpp> +#include <C++Kit/AsmKit/Arch/64k.hpp> #include <C++Kit/ParserKit.hpp> #include <C++Kit/StdKit/PEF.hpp> #include <C++Kit/StdKit/AE.hpp> |
