diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-07 21:30:04 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-07 21:32:00 +0100 |
| commit | e884b0d3b3c9f1900c858b82b3355c9e0518cba8 (patch) | |
| tree | d3152ab9123a590fd709855a0e8b857db2d4a4f4 /dev/SCIKit | |
| parent | 4c7ea58f5d5e495e8da6cfc7e1d52a3dfcf5a893 (diff) | |
ADD: Pushing changes to corporate's repository.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/SCIKit')
| -rw-r--r-- | dev/SCIKit/CompilerHint.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/GPU.h | 4 | ||||
| -rw-r--r-- | dev/SCIKit/LPC.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/Macros.h | 4 | ||||
| -rw-r--r-- | dev/SCIKit/SCI.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/SysCalls.h | 4 | ||||
| -rw-r--r-- | dev/SCIKit/src/GPU.cc | 4 | ||||
| -rw-r--r-- | dev/SCIKit/src/LPC.cc | 4 | ||||
| -rw-r--r-- | dev/SCIKit/src/Makefile | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/SCI.cc | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/SysCallDispatcher.asm | 2 |
11 files changed, 16 insertions, 16 deletions
diff --git a/dev/SCIKit/CompilerHint.h b/dev/SCIKit/CompilerHint.h index 319e924c..246a57b2 100644 --- a/dev/SCIKit/CompilerHint.h +++ b/dev/SCIKit/CompilerHint.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, ELMH GROUP, all rights reserved. ------------------------------------------- */ diff --git a/dev/SCIKit/GPU.h b/dev/SCIKit/GPU.h index 86ad59e0..93f87f7c 100644 --- a/dev/SCIKit/GPU.h +++ b/dev/SCIKit/GPU.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. +Copyright (C) 2024, ELMH GROUP, all rights reserved. File: GPU.h Purpose: GFX System Calls. @@ -47,4 +47,4 @@ IMPORT_C SInt32 GPUDisposeDevice(GPUObject gpu_handle, Bool cancel_all, Bool flu IMPORT_C SInt32 GPUSendCmdBufferListWithCnt(GPU_CMD_BUFFER** cmd_list, SizeT cmd_list_cnt); -#endif // ifndef SCIKIT_GPU_H
\ No newline at end of file +#endif // ifndef SCIKIT_GPU_H diff --git a/dev/SCIKit/LPC.h b/dev/SCIKit/LPC.h index 51467fcf..fc618c2e 100644 --- a/dev/SCIKit/LPC.h +++ b/dev/SCIKit/LPC.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. + Copyright (C) 2024, ELMH GROUP, all rights reserved. ------------------------------------------- */ diff --git a/dev/SCIKit/Macros.h b/dev/SCIKit/Macros.h index cd49acd0..0ce8f5fc 100644 --- a/dev/SCIKit/Macros.h +++ b/dev/SCIKit/Macros.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. +Copyright (C) 2024, ELMH GROUP, all rights reserved. File: Macros.h Purpose: SCIKit Macros header. @@ -53,4 +53,4 @@ typedef SCIObject SocketObject; #undef SYSCALL_DECL #endif // SYSCALL_DECL -#define SYSCALL_DECL(NAME, ...) IMPORT_C VoidPtr NAME(__VA_ARGS__);
\ No newline at end of file +#define SYSCALL_DECL(NAME, ...) IMPORT_C VoidPtr NAME(__VA_ARGS__); diff --git a/dev/SCIKit/SCI.h b/dev/SCIKit/SCI.h index 54dd71fb..571e592b 100644 --- a/dev/SCIKit/SCI.h +++ b/dev/SCIKit/SCI.h @@ -1,6 +1,6 @@ /* -------------------------------------------
-Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
+Copyright (C) 2024, ELMH GROUP, all rights reserved.
File: SCI.h
Purpose: System Calls.
diff --git a/dev/SCIKit/SysCalls.h b/dev/SCIKit/SysCalls.h index 643045ac..cecaca2c 100644 --- a/dev/SCIKit/SysCalls.h +++ b/dev/SCIKit/SysCalls.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. +Copyright (C) 2024, ELMH GROUP, all rights reserved. File: Macros.h Purpose: SCIKit Macros header. @@ -17,4 +17,4 @@ SYSCALL_DECL(FCloseFile, const SCIObject handle); SYSCALL_DECL(FOpenFile, const Char* name, const Char* rest); SYSCALL_DECL(FSeekFile, const SCIObject handle, const SizeT pos); SYSCALL_DECL(FReadFile, const SCIObject handle, const Char* out_buf, const SizeT out_buf_size); -SYSCALL_DECL(FWriteFile, const SCIObject handle, const Char* out_buf, const SizeT out_buf_size);
\ No newline at end of file +SYSCALL_DECL(FWriteFile, const SCIObject handle, const Char* out_buf, const SizeT out_buf_size); diff --git a/dev/SCIKit/src/GPU.cc b/dev/SCIKit/src/GPU.cc index 65168136..d91ce108 100644 --- a/dev/SCIKit/src/GPU.cc +++ b/dev/SCIKit/src/GPU.cc @@ -1,10 +1,10 @@ /* ------------------------------------------- -Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. +Copyright (C) 2024, ELMH GROUP, all rights reserved. File: GPU.cc Purpose: GPU Interface. ------------------------------------------- */ -#include <SCIKit/LPC.h>
\ No newline at end of file +#include <SCIKit/LPC.h> diff --git a/dev/SCIKit/src/LPC.cc b/dev/SCIKit/src/LPC.cc index b4de0a21..c3909462 100644 --- a/dev/SCIKit/src/LPC.cc +++ b/dev/SCIKit/src/LPC.cc @@ -1,10 +1,10 @@ /* ------------------------------------------- -Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved. +Copyright (C) 2024, ELMH GROUP, all rights reserved. File: LPC.cc Purpose: Local Procedure Codes. ------------------------------------------- */ -#include <SCIKit/LPC.h>
\ No newline at end of file +#include <SCIKit/LPC.h> diff --git a/dev/SCIKit/src/Makefile b/dev/SCIKit/src/Makefile index 6fb4cac7..6f9f0596 100644 --- a/dev/SCIKit/src/Makefile +++ b/dev/SCIKit/src/Makefile @@ -1,5 +1,5 @@ ################################################## -# (c) Amlal EL Mahrouss, all rights reserved. +# (c) ELMH GROUP, all rights reserved. # This is the bootloader makefile. ################################################## diff --git a/dev/SCIKit/src/SCI.cc b/dev/SCIKit/src/SCI.cc index 30b69476..786e56e7 100644 --- a/dev/SCIKit/src/SCI.cc +++ b/dev/SCIKit/src/SCI.cc @@ -1,6 +1,6 @@ /* -------------------------------------------
- Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
+ Copyright (C) 2024, ELMH GROUP, all rights reserved.
------------------------------------------- */
diff --git a/dev/SCIKit/src/SysCallDispatcher.asm b/dev/SCIKit/src/SysCallDispatcher.asm index d56f283f..deea6f9e 100644 --- a/dev/SCIKit/src/SysCallDispatcher.asm +++ b/dev/SCIKit/src/SysCallDispatcher.asm @@ -2,7 +2,7 @@ ;; * ======================================================== ;; * ;; * SCI -;; * Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved., all rights reserved. +;; * Copyright (C) 2024, ELMH GROUP, all rights reserved., all rights reserved. ;; * ;; * ======================================================== ;; */ |
