blob: b02361fec7935b41a0bf32a9a4ff8130fd032e34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* 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;
}
|