Files
riscv/emulator/elf.h

7 lines
150 B
C

#pragma once
#include <stdint.h>
#include <stdbool.h>
bool load_elf(const char* file, char* mem, uint32_t mem_size, uint32_t* start_address);