The qemu target has 128KB of ram at 0 and the rest at 0x90000000. Split the binary so that the vector table lives at 0 and everything else in the high address.
13 lines
169 B
Makefile
13 lines
169 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
GLOBAL_INCLUDES += \
|
|
$(LOCAL_DIR)/include
|
|
|
|
PLATFORM := microblaze
|
|
|
|
MEMBASE ?= 0x90000000
|
|
MEMSIZE ?= 0x08000000
|
|
|
|
#include make/module.mk
|
|
|