summaryrefslogtreecommitdiffhomepage
path: root/Drv/DynamicLoader/DynamicLoader.c
blob: f7eb9458924348f388db48c4fbb7321fe5f703d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -------------------------------------------

	Copyright SoftwareLabs

------------------------------------------- */

#include <DDK/KernelString.h>
#include <DDK/KernelPrint.h>

/// @brief Start function
/// @return status code
int __ImageStart(void)
{
	kernelPrintStr("SDLD: Starting up...\r");
	return 0;
}

/// @brief End function.
/// @return status code
int __ImageEnd(void)
{
	kernelPrintStr("SDLD: Shutting down...\r");
	return 0;
}

///! @brief Check if stack has enough space.
void ___chkstk_ms(void)
{
	(void)0;
}