hekate/modules/simple_sample/module_sample.c

13 lines
234 B
C
Raw Normal View History

2018-08-07 14:53:58 +00:00
/* Sample Hekate Module
2018 - M4xw
*/
#include "../../common/common_module.h"
2018-08-21 01:14:31 +00:00
#include "../../common/common_gfx.h"
#include "gfx/gfx.h"
2018-08-07 14:53:58 +00:00
2018-08-21 01:14:31 +00:00
void _modInit(void *moduleConfig, bdkParams_t bp)
2018-08-07 14:53:58 +00:00
{
2018-08-21 01:14:31 +00:00
gfx_puts(bp->gfxCon, "Hello World!");
2018-08-07 14:53:58 +00:00
}