Skip to content

Commit

Permalink
Move the start of AHBWRAM to be immediately after the VECTORS (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfvak authored Aug 23, 2023
1 parent 031762a commit 14b390a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export COMMON_DIR := ../common
# Definitions for initial RAM disk
VRAM_TAR := $(OUTDIR)/vram0.tar
VRAM_DATA := data
VRAM_FLAGS := --make-new --path-limit 99 --size-limit 262144
VRAM_FLAGS := --make-new --path-limit 99
ifeq ($(NTRBOOT),1)
VRAM_SCRIPTS := resources/gm9/scripts
endif
Expand Down
2 changes: 1 addition & 1 deletion arm9/link.ld
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ENTRY(_start)

MEMORY
{
AHBWRAM (RWX) : ORIGIN = 0x08006000, LENGTH = 512K
VECTORS (RX) : ORIGIN = 0x08000000, LENGTH = 64
AHBWRAM (RWX) : ORIGIN = 0x08000040, LENGTH = 512K - 64
}

SECTIONS
Expand Down

0 comments on commit 14b390a

Please sign in to comment.