Files
vm/src/config.h

11 lines
283 B
C

#pragma once
#define EMU_MEM_SIZE 16384u
#define EMU_PROGRAM_PATH "build/emulated.riscv.elf"
#define EMU_ENTRY_SYMBOL "entry"
#define STACK_SIZE 1024
#define RISCV_MEM_OFFSET 0x80000000
#define SIZE_USERDATA 512
#define SECTION_USERDATA (EMU_MEM_SIZE - STACK_SIZE - SIZE_USERDATA)