Skip to content

Commit

Permalink
Merge in d0k3#883 and fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ihaveamac committed Dec 2, 2024
2 parents 47717ac + 76c322a commit 849a2a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arm9/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include ../Makefile.common
include ../Makefile.build

arm9_data.elf: arm9.elf
arm-none-eabi-objcopy -O elf32-littlearm -j .rodata* -j .data* -j .bss* $< $@
$(OBJCOPY) -O elf32-littlearm -j .rodata* -j .data* -j .bss* $< $@

arm9_code.elf: arm9.elf
arm-none-eabi-objcopy -O elf32-littlearm -j .text* -j .vectors* $< $@
$(OBJCOPY) -O elf32-littlearm -j .text* -j .vectors* $< $@
2 changes: 1 addition & 1 deletion arm9/link.ld
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MEMORY
{
VECTORS (RX) : ORIGIN = 0x08000000, LENGTH = 64
CODEMEM (RX) : ORIGIN = 0x08000040, LENGTH = 512K - 64
BOOTMIR (R) : ORIGIN = 0x08080000, LENGTH = 128K /* BootROM mirrors, don't touch! */
BOOTROM (R) : ORIGIN = 0x08080000, LENGTH = 128K /* BootROM mirrors, don't touch! */
DATAMEM (RW) : ORIGIN = 0x080A0000, LENGTH = 384K
}

Expand Down

0 comments on commit 849a2a4

Please sign in to comment.