mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-10 23:15:04 +01:00
27 lines
342 B
C
27 lines
342 B
C
|
#ifndef __KERNEL_DEFS_H_
|
||
|
#define __KERNEL_DEFS_H_
|
||
|
|
||
|
#include <dynamic_libs/fs_functions.h>
|
||
|
#include <dynamic_libs/os_types.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct _bat_t
|
||
|
{
|
||
|
u32 h;
|
||
|
u32 l;
|
||
|
} bat_t;
|
||
|
|
||
|
typedef struct _bat_table_t
|
||
|
{
|
||
|
bat_t bat[8];
|
||
|
} bat_table_t;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __KERNEL_DEFS_H_
|