bond/include/kernel/hal/boot.h

22 lines
329 B
C
Raw Normal View History

2018-01-26 08:43:22 +00:00
#ifndef _KERNEL_HAL_BOOT_H_
#define _KERNEL_HAL_BOOT_H_
2018-01-26 08:43:22 +00:00
#include "type.h"
#include "kernel/hal/intr.h"
#include "kernel/hal/mem.h"
#include "status.h"
2018-01-26 08:43:22 +00:00
/**
* Required OS boot info
*/
2016-07-01 09:15:07 +00:00
typedef struct
{
2018-02-18 04:06:57 +00:00
void *krnl_end;
intr_info_t intr_info;
char cpu_vd_str[13];
2017-02-01 03:26:08 +00:00
} boot_info_t;
2018-02-18 07:48:59 +00:00
status_t SXAPI hal_init(void *m_info);
#endif