mirror of
https://github.com/PiMaker/rvc.git
synced 2024-11-22 03:55:20 +00:00
ed82c5487f
...plus some comfort improvements, more testing. This now successfully boots OpenSBI when built like specified in the Makefile!
11 lines
253 B
C
11 lines
253 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
int32_t load_elf(const char *path,
|
|
uint64_t path_len,
|
|
uint8_t *data,
|
|
uint64_t data_len,
|
|
bool verbose);
|