criscv/include/program_loader.h
2024-10-15 17:07:18 +02:00

8 lines
No EOL
154 B
C

#ifndef PROGRAM_LOADER_H
#define PROGRAM_LOADER_H
#include "address_space.h"
int load_to_rom(const char filename[], AddressSpace *addressSpace);
#endif