diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
commit | 555749ef5dde558f745f0dc6d00a168d3b3e9d58 (patch) | |
tree | eba6929696b04e4d4fb67271f9dee78bfa6ff2e1 /source/elfload.cpp | |
parent | 123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff) |
8x oversample; other fixes
Diffstat (limited to 'source/elfload.cpp')
-rw-r--r-- | source/elfload.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source/elfload.cpp b/source/elfload.cpp index a430ad2..2d75cb0 100644 --- a/source/elfload.cpp +++ b/source/elfload.cpp @@ -21,6 +21,22 @@ std::array<unsigned char, MAX_ELF_FILE_SIZE> ELFManager::m_file_buffer = {}; static const unsigned char elf_header[] = { '\177', 'E', 'L', 'F' }; +__attribute__((section(".convcode"))) +ELFManager::EntryFunc ELFManager::loadedElf() +{ + return m_entry; +} + +unsigned char *ELFManager::fileBuffer() +{ + return m_file_buffer.data(); +} + +void ELFManager::unload() +{ + m_entry = nullptr; +} + template<typename T> constexpr static auto ptr_from_offset(void *base, uint32_t offset) { |