diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-25 14:04:14 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-25 14:04:14 +0100 |
| commit | 4ed658c633ce5d7c5bde4acdbe322e5f51592369 (patch) | |
| tree | 2eaf1d46946bf86123f1561338c81aaff8956662 /dev/SCIKit | |
| parent | 02fd0b59edbcb2b5c08ab1f36bbffc12ba08a5d3 (diff) | |
IMPL: Important refactors and improvements of ZkaOS.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/SCIKit')
| -rw-r--r-- | dev/SCIKit/GPU.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/LPC.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/Macros.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/SCI.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/SysCalls.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/sci.json | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/GPU.cc | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/LPC.cc | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/SCI.cc | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/dev/SCIKit/GPU.h b/dev/SCIKit/GPU.h index a7e3dd92..8a1af4ca 100644 --- a/dev/SCIKit/GPU.h +++ b/dev/SCIKit/GPU.h @@ -10,7 +10,7 @@ Purpose: GFX System Calls. #ifndef SCIKIT_GPU_H #define SCIKIT_GPU_H -#include <SCIKit/SCI.h> +#include <SCI.h> // ------------------------------------------------------------------------------------------ // // GPU API. diff --git a/dev/SCIKit/LPC.h b/dev/SCIKit/LPC.h index b0e9e456..717c32ec 100644 --- a/dev/SCIKit/LPC.h +++ b/dev/SCIKit/LPC.h @@ -6,7 +6,7 @@ #pragma once -#include <SCIKit/Macros.h> +#include <Macros.h> /// @file LPC.h /// @brief Local Process Code type and values. diff --git a/dev/SCIKit/Macros.h b/dev/SCIKit/Macros.h index 9523725c..cbeb67eb 100644 --- a/dev/SCIKit/Macros.h +++ b/dev/SCIKit/Macros.h @@ -14,7 +14,7 @@ Purpose: SCIKit Macros header. /// @brief Macros and core types. /***********************************************************************************/ -#include <SCIKit/CompilerHint.h> +#include <CompilerHint.h> #define ATTRIBUTE(X) __attribute__((X)) #define IMPORT_CXX extern "C++" diff --git a/dev/SCIKit/SCI.h b/dev/SCIKit/SCI.h index 0eea032a..5b32a2fd 100644 --- a/dev/SCIKit/SCI.h +++ b/dev/SCIKit/SCI.h @@ -10,7 +10,7 @@ Purpose: System Calls. #ifndef SCIKIT_FOUNDATION_H
#define SCIKIT_FOUNDATION_H
-#include <SCIKit/Macros.h>
+#include <Macros.h>
// ------------------------------------------------------------------------------------------ //
/// @brief Dynamic Loader API.
diff --git a/dev/SCIKit/SysCalls.h b/dev/SCIKit/SysCalls.h index 1f87134a..3624dcc6 100644 --- a/dev/SCIKit/SysCalls.h +++ b/dev/SCIKit/SysCalls.h @@ -9,7 +9,7 @@ Purpose: SCIKit Macros header. #pragma once -#include <SCIKit/Macros.h> +#include <Macros.h> /// @brief In this file we define filesystem calls. diff --git a/dev/SCIKit/sci.json b/dev/SCIKit/sci.json index b0e267d2..44d00f87 100644 --- a/dev/SCIKit/sci.json +++ b/dev/SCIKit/sci.json @@ -1,7 +1,7 @@ { "compiler_path": "x86_64-w64-mingw32-g++", "compiler_std": "c++20", - "headers_path": ["../"], + "headers_path": ["../", "./"], "sources_path": ["src/*.cc", "src/*.o"], "output_name": "SCIKit.dylib", "compiler_flags": [ diff --git a/dev/SCIKit/src/GPU.cc b/dev/SCIKit/src/GPU.cc index cb21dae5..46e090e6 100644 --- a/dev/SCIKit/src/GPU.cc +++ b/dev/SCIKit/src/GPU.cc @@ -7,4 +7,4 @@ Purpose: GPU Interface. ------------------------------------------- */ -#include <SCIKit/LPC.h> +#include <LPC.h> diff --git a/dev/SCIKit/src/LPC.cc b/dev/SCIKit/src/LPC.cc index 2dcfc415..47f47ce6 100644 --- a/dev/SCIKit/src/LPC.cc +++ b/dev/SCIKit/src/LPC.cc @@ -7,4 +7,4 @@ Purpose: Local Procedure Codes. ------------------------------------------- */ -#include <SCIKit/LPC.h> +#include <LPC.h> diff --git a/dev/SCIKit/src/SCI.cc b/dev/SCIKit/src/SCI.cc index a5ccdc23..3437498c 100644 --- a/dev/SCIKit/src/SCI.cc +++ b/dev/SCIKit/src/SCI.cc @@ -4,7 +4,7 @@ ------------------------------------------- */
-#include <SCIKit/SCI.h>
+#include <SCI.h>
/// @file SCI.cc
/// @brief Source file for the memory functions of the SCI.
|
