/** * @file objectloader.h * @brief Object file loader for the emulator */ #include #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);