summaryrefslogtreecommitdiffhomepage
path: root/Samples/SampleHAL/Main.c
blob: 9d1510ea19ed166c5b94c5f2e9d91874a3b775ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -------------------------------------------

	Copyright ZKA Technologies

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

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

int __at_enter(void)
{
	kernelPrintStr("SampleHAL: Starting up...\r");
	return 0;
}

int __at_exit(void)
{
	kernelPrintStr("SampleHAL: Shutting down...\r");
	return 0;
}