summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-11 19:07:15 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-11 19:07:15 +0100
commitb4ebac8598396b459c74914e7be11a37b9089af2 (patch)
treeb0c25632f15afa66505fa9dae06f837650720a72
parent8fce7d6a9c3d6b617e6e0db19ca4322b2ccb14cb (diff)
Codebase refactor and new files in External/
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
-rw-r--r--64x0-Drivers/64asm.cc2
-rw-r--r--64x0-Drivers/64ld.cc2
-rw-r--r--64x0-Drivers/makefile2
-rw-r--r--CompilerKit/AsmKit/Arch/32k.hpp2
-rw-r--r--CompilerKit/AsmKit/Arch/64k.hpp2
-rw-r--r--CompilerKit/AsmKit/AsmKit.cc2
-rw-r--r--CompilerKit/AsmKit/AsmKit.hpp2
-rw-r--r--CompilerKit/Compiler.hpp2
-rw-r--r--CompilerKit/Defines.hpp2
-rw-r--r--CompilerKit/ParserKit.hpp2
-rw-r--r--CompilerKit/StdKit/AE.hpp2
-rw-r--r--CompilerKit/StdKit/PEF.hpp2
l---------External/ObjFormat.h1
l---------External/Pef.h1
14 files changed, 14 insertions, 12 deletions
diff --git a/64x0-Drivers/64asm.cc b/64x0-Drivers/64asm.cc
index f21a274..2c0b127 100644
--- a/64x0-Drivers/64asm.cc
+++ b/64x0-Drivers/64asm.cc
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/64x0-Drivers/64ld.cc b/64x0-Drivers/64ld.cc
index bf13c28..8b9064e 100644
--- a/64x0-Drivers/64ld.cc
+++ b/64x0-Drivers/64ld.cc
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/64x0-Drivers/makefile b/64x0-Drivers/makefile
index cff42ae..f68cea6 100644
--- a/64x0-Drivers/makefile
+++ b/64x0-Drivers/makefile
@@ -1,7 +1,7 @@
#
# ========================================================
#
- # C++Kit
+ # MPCC
# Copyright Mahrouss Logic, all rights reserved.
#
# ========================================================
diff --git a/CompilerKit/AsmKit/Arch/32k.hpp b/CompilerKit/AsmKit/Arch/32k.hpp
index aed3e49..b9ce4bb 100644
--- a/CompilerKit/AsmKit/Arch/32k.hpp
+++ b/CompilerKit/AsmKit/Arch/32k.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/AsmKit/Arch/64k.hpp b/CompilerKit/AsmKit/Arch/64k.hpp
index 0eb5afd..ceee868 100644
--- a/CompilerKit/AsmKit/Arch/64k.hpp
+++ b/CompilerKit/AsmKit/Arch/64k.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/AsmKit/AsmKit.cc b/CompilerKit/AsmKit/AsmKit.cc
index 300c1e8..d0c21e6 100644
--- a/CompilerKit/AsmKit/AsmKit.cc
+++ b/CompilerKit/AsmKit/AsmKit.cc
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/AsmKit/AsmKit.hpp b/CompilerKit/AsmKit/AsmKit.hpp
index 14dc7a7..e1f9de9 100644
--- a/CompilerKit/AsmKit/AsmKit.hpp
+++ b/CompilerKit/AsmKit/AsmKit.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/Compiler.hpp b/CompilerKit/Compiler.hpp
index 17149f3..6edc0d2 100644
--- a/CompilerKit/Compiler.hpp
+++ b/CompilerKit/Compiler.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/Defines.hpp b/CompilerKit/Defines.hpp
index fdaeaf4..027f24f 100644
--- a/CompilerKit/Defines.hpp
+++ b/CompilerKit/Defines.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/ParserKit.hpp b/CompilerKit/ParserKit.hpp
index 58c9516..f0829a6 100644
--- a/CompilerKit/ParserKit.hpp
+++ b/CompilerKit/ParserKit.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/StdKit/AE.hpp b/CompilerKit/StdKit/AE.hpp
index c4d1b7a..c01bc51 100644
--- a/CompilerKit/StdKit/AE.hpp
+++ b/CompilerKit/StdKit/AE.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/CompilerKit/StdKit/PEF.hpp b/CompilerKit/StdKit/PEF.hpp
index 08e2433..924593f 100644
--- a/CompilerKit/StdKit/PEF.hpp
+++ b/CompilerKit/StdKit/PEF.hpp
@@ -1,7 +1,7 @@
/*
* ========================================================
*
- * C++Kit
+ * MPCC
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
diff --git a/External/ObjFormat.h b/External/ObjFormat.h
new file mode 120000
index 0000000..6781ba9
--- /dev/null
+++ b/External/ObjFormat.h
@@ -0,0 +1 @@
+../CompilerKit/StdKit/AE.hpp \ No newline at end of file
diff --git a/External/Pef.h b/External/Pef.h
new file mode 120000
index 0000000..fcf640c
--- /dev/null
+++ b/External/Pef.h
@@ -0,0 +1 @@
+../CompilerKit/StdKit/PEF.hpp \ No newline at end of file