ARMv8/src/emulator/objectloader.h
2024-05-29 14:26:51 +01:00

15 lines
390 B
C

/**
* @file objectloader.h
* @brief Object file loader for the emulator
*/
#include <stdbool.h>
#include "defs.h"
/**
* @brief Loads an object file into memory starting at memoryAddress.
*
* @param filename The name of the file to be read
* @param memoryAddress The memory address to load the object file into
*/
void loadObjectFile(const char *filename, byte *memoryAddress);