criscv/include/program_loader.h

8 lines
154 B
C
Raw Normal View History

#ifndef PROGRAM_LOADER_H
#define PROGRAM_LOADER_H
2024-10-14 19:48:56 +02:00
#include "address_space.h"
int load_to_rom(const char filename[], AddressSpace *addressSpace);
#endif