diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-22 11:02:34 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-22 11:02:34 +0200 |
| commit | efd60f780ba66b363dc564b99a09b60163b9edcb (patch) | |
| tree | ddb8b4564cabc0578cedc0b2b2ec4941a9b3e35a /Drv | |
| parent | afb57783942238da489de6677941ecc64f9d8929 (diff) | |
IMP: Support fork based operations inside the file manager, update PEF
loader to load from forks, we might need a non-fork loader class though.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Drv')
| -rw-r--r-- | Drv/VideoDrv/VideoDrv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Drv/VideoDrv/VideoDrv.c b/Drv/VideoDrv/VideoDrv.c index fc79d2a0..2e389358 100644 --- a/Drv/VideoDrv/VideoDrv.c +++ b/Drv/VideoDrv/VideoDrv.c @@ -6,17 +6,16 @@ #include <DDK/KernelString.h> #include <DDK/KernelPrint.h> - #include <Builtins/GX/GX> int __at_enter(void) { - kernelPrintStr("VideoDrv: Starting up...\r"); + kernelPrintStr("VideoDrv: Starting up GPU...\r"); return 0; } int __at_exit(void) { - kernelPrintStr("VideoDrv: Shutting down...\r"); + kernelPrintStr("VideoDrv: Shutting down GPU...\r"); return 0; } |
