981c35584c
Added base code, can run ELF files and simulate RV32I instructions
9 lines
108 B
C
9 lines
108 B
C
#ifndef BOOTLOADER_H
|
|
#define BOOTLOADER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t bootload(char* file_path);
|
|
|
|
#endif
|