/
dzavalishin
/
pok
Обзор
Документация
Войти
/
dzavalishin
/
pok
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
kernel/include/core/loader.h
28 строк
874 B
Samuel Tardieu
Update year in copyright headers
20 мар 2021, 11:30
20 мар 2021, 11:30
71185e2
Код
Авторство
О чём код?
/* * POK header * * The following file is a part of the POK project. Any modification should * be made according to the POK licence. You CANNOT use this file or a part * of a file for your own project. * * For more information on the POK licence, please see our LICENCE FILE * * Please follow the coding guidelines described in doc/CODING_GUIDELINES * * Copyright (c) 2007-2021 POK team */ #ifndef __POK_LOADER_H__ #define __POK_LOADER_H__ #include <types.h> /** * \brief Load the program of the partition * * It loads the program of the partition \a part_id. In fact, * It will load the ELF file that corresponds to this partition. */ void pok_loader_load_partition(const uint8_t part_id, uint32_t offset, uint32_t *entry); #endif /* !__POK_LOADER_H__ */