diff options
Diffstat (limited to 'Samples/SampleHAL/Main.c')
| -rw-r--r-- | Samples/SampleHAL/Main.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Samples/SampleHAL/Main.c b/Samples/SampleHAL/Main.c new file mode 100644 index 00000000..9d1510ea --- /dev/null +++ b/Samples/SampleHAL/Main.c @@ -0,0 +1,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; +} |
