11 lines
272 B
C
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)
|