14 lines
287 B
C
14 lines
287 B
C
#ifndef MANGO_BSP_H_
|
|
#define MANGO_BSP_H_
|
|
|
|
#include <mango/compiler.h>
|
|
#include <mango/status.h>
|
|
#include <mango/types.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern void bsp_set_location(const struct boot_module *mod);
|
|
extern void bsp_get_location(struct boot_module *out);
|
|
|
|
#endif
|