Files
vm/src/config.h
2026-05-14 16:22:52 +02:00

11 lines
272 B
C

#pragma once
#define EMU_MEM_SIZE 16384u
#define EMU_PROGRAM_PATH "build/license"
#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)