From 40b4d52e905227849785f6520d0381f19657820a Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 12 May 2024 11:24:16 +0200 Subject: Reorganize all this shit --- emulator/elf.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 emulator/elf.h (limited to 'emulator/elf.h') diff --git a/emulator/elf.h b/emulator/elf.h new file mode 100644 index 0000000..2ba3739 --- /dev/null +++ b/emulator/elf.h @@ -0,0 +1,6 @@ +#pragma once + +#include +#include + +bool load_elf(const char* file, char* mem, uint32_t mem_size, uint32_t* start_address); -- cgit