blob: 70c509b9a72a2c6dec269b3c5431f0bd2e559c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Created on Thu Oct 17 08:00:42 CEST 2024
*
* Copyright (c) 2024-2025 Amlal El Mahrouss
*/
#include <libSystem/SystemKit/System.h>
/// @brief This program loads a code framework into Kernel's memory.
SInt32 _NeMain(SInt32 argc, Char* argv[]) {
LIBSYS_UNUSED(argc);
LIBSYS_UNUSED(argv);
PrintOut(nullptr, "%s", "ld.fwrk: Framework Loader.\n");
PrintOut(nullptr, "%s",
"ld.fwrk: © 2024-2025 Amlal El Mahrouss, Licensed under the Apache 2.0 license.\n");
return EXIT_FAILURE;
}
|