summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-28 05:23:03 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-28 05:23:03 +0100
commit703307969bcd7f109ac6561840a01c482d1c3421 (patch)
tree977227769576a4e5e6fba6ba4df588033d4ffed9 /dev/LibCompiler
parent0397d59f01f55e4a7792b8c9c011e728292cd6e3 (diff)
libcompiler: update copyright years to 2024–2025
Update all source headers in LibCompiler and tools to reflect the correct copyright span for ongoing development. Affects headers and source files across: - AAL CPU backends (amd64, arm64, 64x0, 32x0) - Assembler and linker backends (PEF, XCOFF) - Parser, macros, defines, utils - Tools: asm, dbg, ld64, necc No functional changes made. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler')
-rw-r--r--dev/LibCompiler/AAL/AssemblyInterface.h2
-rw-r--r--dev/LibCompiler/AAL/CPU/32x0.h2
-rw-r--r--dev/LibCompiler/AAL/CPU/64x0.h2
-rw-r--r--dev/LibCompiler/AAL/CPU/amd64.h2
-rw-r--r--dev/LibCompiler/AAL/CPU/arm64.h2
-rw-r--r--dev/LibCompiler/Defines.h2
-rw-r--r--dev/LibCompiler/Macros.h2
-rw-r--r--dev/LibCompiler/NFC/PEF.h2
-rw-r--r--dev/LibCompiler/NFC/XCOFF.h2
-rw-r--r--dev/LibCompiler/Parser.h2
-rw-r--r--dev/LibCompiler/Version.h2
-rw-r--r--dev/LibCompiler/src/Assembler32x0.cc2
-rw-r--r--dev/LibCompiler/src/Assembler64x0.cc2
-rw-r--r--dev/LibCompiler/src/AssemblerAMD64.cc2
-rw-r--r--dev/LibCompiler/src/AssemblerARM64.cc2
-rw-r--r--dev/LibCompiler/src/AssemblerPower.cc2
-rw-r--r--dev/LibCompiler/src/AssemblyFactory.cc2
-rw-r--r--dev/LibCompiler/src/Detail/AsmUtils.h2
-rw-r--r--dev/LibCompiler/src/Detail/ClUtils.h2
-rw-r--r--dev/LibCompiler/src/DynamicLinkerPEF.cc2
20 files changed, 20 insertions, 20 deletions
diff --git a/dev/LibCompiler/AAL/AssemblyInterface.h b/dev/LibCompiler/AAL/AssemblyInterface.h
index 7e02e4f..a9ca95b 100644
--- a/dev/LibCompiler/AAL/AssemblyInterface.h
+++ b/dev/LibCompiler/AAL/AssemblyInterface.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/AAL/CPU/32x0.h b/dev/LibCompiler/AAL/CPU/32x0.h
index b352784..007beab 100644
--- a/dev/LibCompiler/AAL/CPU/32x0.h
+++ b/dev/LibCompiler/AAL/CPU/32x0.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/AAL/CPU/64x0.h b/dev/LibCompiler/AAL/CPU/64x0.h
index 912ed17..4944e3b 100644
--- a/dev/LibCompiler/AAL/CPU/64x0.h
+++ b/dev/LibCompiler/AAL/CPU/64x0.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/AAL/CPU/amd64.h b/dev/LibCompiler/AAL/CPU/amd64.h
index 34e6955..0717dc1 100644
--- a/dev/LibCompiler/AAL/CPU/amd64.h
+++ b/dev/LibCompiler/AAL/CPU/amd64.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/AAL/CPU/arm64.h b/dev/LibCompiler/AAL/CPU/arm64.h
index d00a19c..02a2bf2 100644
--- a/dev/LibCompiler/AAL/CPU/arm64.h
+++ b/dev/LibCompiler/AAL/CPU/arm64.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
-Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/Defines.h b/dev/LibCompiler/Defines.h
index aa5b890..b13cd86 100644
--- a/dev/LibCompiler/Defines.h
+++ b/dev/LibCompiler/Defines.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/Macros.h b/dev/LibCompiler/Macros.h
index f8bdd6d..f2f5f6b 100644
--- a/dev/LibCompiler/Macros.h
+++ b/dev/LibCompiler/Macros.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/NFC/PEF.h b/dev/LibCompiler/NFC/PEF.h
index d351128..af49470 100644
--- a/dev/LibCompiler/NFC/PEF.h
+++ b/dev/LibCompiler/NFC/PEF.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/NFC/XCOFF.h b/dev/LibCompiler/NFC/XCOFF.h
index 30177e3..6fdbf6b 100644
--- a/dev/LibCompiler/NFC/XCOFF.h
+++ b/dev/LibCompiler/NFC/XCOFF.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
File: XCOFF.hpp
Purpose: XCOFF for NeOS.
diff --git a/dev/LibCompiler/Parser.h b/dev/LibCompiler/Parser.h
index 779bf36..826b8cf 100644
--- a/dev/LibCompiler/Parser.h
+++ b/dev/LibCompiler/Parser.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/Version.h b/dev/LibCompiler/Version.h
index d8b4835..c10a16e 100644
--- a/dev/LibCompiler/Version.h
+++ b/dev/LibCompiler/Version.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Assembler32x0.cc b/dev/LibCompiler/src/Assembler32x0.cc
index 8b0cb68..0eaf78a 100644
--- a/dev/LibCompiler/src/Assembler32x0.cc
+++ b/dev/LibCompiler/src/Assembler32x0.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Assembler64x0.cc b/dev/LibCompiler/src/Assembler64x0.cc
index 9ec57bb..dc2b3d8 100644
--- a/dev/LibCompiler/src/Assembler64x0.cc
+++ b/dev/LibCompiler/src/Assembler64x0.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/AssemblerAMD64.cc b/dev/LibCompiler/src/AssemblerAMD64.cc
index 58dc985..31dcad4 100644
--- a/dev/LibCompiler/src/AssemblerAMD64.cc
+++ b/dev/LibCompiler/src/AssemblerAMD64.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/AssemblerARM64.cc b/dev/LibCompiler/src/AssemblerARM64.cc
index 637bbdf..d817d48 100644
--- a/dev/LibCompiler/src/AssemblerARM64.cc
+++ b/dev/LibCompiler/src/AssemblerARM64.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/AssemblerPower.cc b/dev/LibCompiler/src/AssemblerPower.cc
index 9f11ae1..b6cbe66 100644
--- a/dev/LibCompiler/src/AssemblerPower.cc
+++ b/dev/LibCompiler/src/AssemblerPower.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/AssemblyFactory.cc b/dev/LibCompiler/src/AssemblyFactory.cc
index bfa0ef2..0765deb 100644
--- a/dev/LibCompiler/src/AssemblyFactory.cc
+++ b/dev/LibCompiler/src/AssemblyFactory.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Detail/AsmUtils.h b/dev/LibCompiler/src/Detail/AsmUtils.h
index 4d3e19c..29dbcbe 100644
--- a/dev/LibCompiler/src/Detail/AsmUtils.h
+++ b/dev/LibCompiler/src/Detail/AsmUtils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/Detail/ClUtils.h b/dev/LibCompiler/src/Detail/ClUtils.h
index 1298a30..aa1e0f6 100644
--- a/dev/LibCompiler/src/Detail/ClUtils.h
+++ b/dev/LibCompiler/src/Detail/ClUtils.h
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrous, all rights reserved
------------------------------------------- */
diff --git a/dev/LibCompiler/src/DynamicLinkerPEF.cc b/dev/LibCompiler/src/DynamicLinkerPEF.cc
index 924f587..aed208a 100644
--- a/dev/LibCompiler/src/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/DynamicLinkerPEF.cc
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright (C) 2024 Amlal EL Mahrouss, all rights reserved
+ Copyright (C) 2024-2025 Amlal EL Mahrouss, all rights reserved
@file DynamicLinker64PEF.cc
@brief: C++ 64-Bit PEF Linker.