mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-05-04 07:19:32 +00:00
19 lines
268 B
C
19 lines
268 B
C
// minimig_cfg.h
|
|
|
|
|
|
#ifndef __MINIMIG_CFG_H__
|
|
#define __MINIMIG_CFG_H__
|
|
|
|
|
|
//// type definitions ////
|
|
typedef struct {
|
|
uint8_t kick1x_memory_detection_patch;
|
|
} minimig_cfg_t;
|
|
|
|
|
|
//// global variables ////
|
|
extern minimig_cfg_t minimig_cfg;
|
|
|
|
|
|
#endif // __MINIMIG_CFG_H__
|