Rename boot obejct file to have a more generic name

We use the 6102 boot code by default, but this can be changed (for
example, if flashing to a cartridge with a different CIC).

As with the microcode, the path cannot be easily passed to the
linker script and so the hard-coded name should not be specific to
particular boot code.
This commit is contained in:
Matt Penny 2024-01-08 22:51:46 -05:00
parent 8aa8e0f331
commit 77a17ab022
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ endif
CODESEGMENT = build/codesegment
BOOT = $(N64_ROOT)/usr/lib/n64/PR/bootcode/boot.6102
BOOT_OBJ = build/boot.6102.o
BOOT_OBJ = build/boot.o
UCODE_RSP = $(N64_ROOT)/usr/lib/n64/PR/rspboot.o
RSP_OBJ = build/rspboot.o

View file

@ -26,7 +26,7 @@ SECTIONS
BEGIN_SEG(boot, 0x04000000)
{
build/asm/rom_header.o(.text);
build/boot.6102.o(.data);
build/boot.o(.data);
}
END_SEG(boot)