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