15 lines
390 B
C
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); |