mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-27 22:03:53 +01:00
Fix modern
This commit is contained in:
parent
888cbd634c
commit
27aae9da9a
2
Makefile
2
Makefile
@ -312,7 +312,7 @@ endif
|
|||||||
$(OBJ_DIR)/ld_script.ld: $(LD_SCRIPT) $(LD_SCRIPT_DEPS)
|
$(OBJ_DIR)/ld_script.ld: $(LD_SCRIPT) $(LD_SCRIPT_DEPS)
|
||||||
cd $(OBJ_DIR) && sed "s#tools/#../../tools/#g" ../../$(LD_SCRIPT) > ld_script.ld
|
cd $(OBJ_DIR) && sed "s#tools/#../../tools/#g" ../../$(LD_SCRIPT) > ld_script.ld
|
||||||
|
|
||||||
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS) libagbsyscall
|
$(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS) berry_fix libagbsyscall
|
||||||
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
|
cd $(OBJ_DIR) && $(LD) $(LDFLAGS) -T ld_script.ld -o ../../$@ $(OBJS_REL) $(LIB)
|
||||||
$(FIX) $@ -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
|
$(FIX) $@ -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
|
||||||
|
|
||||||
|
@ -376,7 +376,6 @@ SECTIONS {
|
|||||||
*libagbsyscall.a:SoftReset.o(.text);
|
*libagbsyscall.a:SoftReset.o(.text);
|
||||||
*libagbsyscall.a:Sqrt.o(.text);
|
*libagbsyscall.a:Sqrt.o(.text);
|
||||||
*libagbsyscall.a:VBlankIntrWait.o(.text);
|
*libagbsyscall.a:VBlankIntrWait.o(.text);
|
||||||
src/libagbsyscall.o(.text);
|
|
||||||
*libgcc.a:_call_via_rX.o(.text);
|
*libgcc.a:_call_via_rX.o(.text);
|
||||||
*libgcc.a:_divdi3.o(.text);
|
*libgcc.a:_divdi3.o(.text);
|
||||||
*libgcc.a:_divsi3.o(.text);
|
*libgcc.a:_divsi3.o(.text);
|
||||||
|
@ -14,6 +14,7 @@ SECTIONS {
|
|||||||
. = 0x1C000;
|
. = 0x1C000;
|
||||||
|
|
||||||
src/*.o(ewram_data);
|
src/*.o(ewram_data);
|
||||||
|
gflib/*.o(ewram_data);
|
||||||
|
|
||||||
. = 0x40000;
|
. = 0x40000;
|
||||||
}
|
}
|
||||||
@ -25,12 +26,14 @@ SECTIONS {
|
|||||||
{
|
{
|
||||||
/* .bss starts at 0x3000000 */
|
/* .bss starts at 0x3000000 */
|
||||||
src/*.o(.bss);
|
src/*.o(.bss);
|
||||||
|
gflib/*.o(.bss);
|
||||||
|
|
||||||
/* .bss.code starts at 0x3001AA8 */
|
/* .bss.code starts at 0x3001AA8 */
|
||||||
src/m4a.o(.bss.code);
|
src/m4a.o(.bss.code);
|
||||||
|
|
||||||
/* COMMON starts at 0x30022A8 */
|
/* COMMON starts at 0x30022A8 */
|
||||||
src/*.o(COMMON);
|
src/*.o(COMMON);
|
||||||
|
gflib/*.o(COMMON);
|
||||||
*libc.a:sbrkr.o(COMMON);
|
*libc.a:sbrkr.o(COMMON);
|
||||||
end = .;
|
end = .;
|
||||||
. = 0x8000;
|
. = 0x8000;
|
||||||
@ -43,6 +46,7 @@ SECTIONS {
|
|||||||
{
|
{
|
||||||
src/crt0.o(.text);
|
src/crt0.o(.text);
|
||||||
src/*.o(.text);
|
src/*.o(.text);
|
||||||
|
gflib/*.o(.text);
|
||||||
asm/*.o(.text);
|
asm/*.o(.text);
|
||||||
} =0
|
} =0
|
||||||
|
|
||||||
@ -67,7 +71,7 @@ SECTIONS {
|
|||||||
asm/librfu_intr.o(.text);
|
asm/librfu_intr.o(.text);
|
||||||
src/librfu_rfu.o(.text);
|
src/librfu_rfu.o(.text);
|
||||||
asm/librfu.o(.text);
|
asm/librfu.o(.text);
|
||||||
src/libagbsyscall.o(.text);
|
*libagbsyscall.a:*.o(.text*);
|
||||||
*libgcc.a:*.o(.text*);
|
*libgcc.a:*.o(.text*);
|
||||||
*libc.a:*.o(.text*);
|
*libc.a:*.o(.text*);
|
||||||
src/libisagbprn.o(.text);
|
src/libisagbprn.o(.text);
|
||||||
@ -77,6 +81,7 @@ SECTIONS {
|
|||||||
ALIGN(4)
|
ALIGN(4)
|
||||||
{
|
{
|
||||||
src/*.o(.rodata*);
|
src/*.o(.rodata*);
|
||||||
|
gflib/*.o(.rodata*);
|
||||||
data/*.o(.rodata*);
|
data/*.o(.rodata*);
|
||||||
} =0
|
} =0
|
||||||
|
|
||||||
|
@ -1,116 +0,0 @@
|
|||||||
.include "constants/gba_constants.inc"
|
|
||||||
.include "asm/macros.inc"
|
|
||||||
|
|
||||||
.syntax unified
|
|
||||||
|
|
||||||
.text
|
|
||||||
|
|
||||||
thumb_func_start ArcTan2
|
|
||||||
ArcTan2: @ 82E7078
|
|
||||||
swi 0xA
|
|
||||||
bx lr
|
|
||||||
thumb_func_end ArcTan2
|
|
||||||
|
|
||||||
thumb_func_start BgAffineSet
|
|
||||||
@ void BgAffineSet(BgAffineSet_src_data *src, BgAffineSet_dest_data *dest, int entry_count)
|
|
||||||
BgAffineSet: @ 82E707C
|
|
||||||
swi 0xE
|
|
||||||
bx lr
|
|
||||||
thumb_func_end BgAffineSet
|
|
||||||
|
|
||||||
thumb_func_start CpuFastSet
|
|
||||||
@ void CpuFastSet(void *src, void *dest, unsigned int mode)
|
|
||||||
CpuFastSet: @ 82E7080
|
|
||||||
swi 0xC
|
|
||||||
bx lr
|
|
||||||
thumb_func_end CpuFastSet
|
|
||||||
|
|
||||||
thumb_func_start CpuSet
|
|
||||||
@ void CpuSet(void *src, void *dest, unsigned int mode)
|
|
||||||
CpuSet: @ 82E7084
|
|
||||||
swi 0xB
|
|
||||||
bx lr
|
|
||||||
thumb_func_end CpuSet
|
|
||||||
|
|
||||||
thumb_func_start Div
|
|
||||||
Div: @ 82E7088
|
|
||||||
swi 0x6
|
|
||||||
bx lr
|
|
||||||
thumb_func_end Div
|
|
||||||
|
|
||||||
thumb_func_start LZ77UnCompVram
|
|
||||||
@ void LZ77UnCompVram(void *src, void *dest)
|
|
||||||
LZ77UnCompVram: @ 82E708C
|
|
||||||
swi 0x12
|
|
||||||
bx lr
|
|
||||||
thumb_func_end LZ77UnCompVram
|
|
||||||
|
|
||||||
thumb_func_start LZ77UnCompWram
|
|
||||||
@ void LZ77UnCompWram(void *src, void *dest)
|
|
||||||
LZ77UnCompWram: @ 82E7090
|
|
||||||
swi 0x11
|
|
||||||
bx lr
|
|
||||||
thumb_func_end LZ77UnCompWram
|
|
||||||
|
|
||||||
thumb_func_start MultiBoot
|
|
||||||
@ s32 MultiBoot(struct MultiBootParam *mp)
|
|
||||||
MultiBoot: @ 82E7094
|
|
||||||
movs r1, 0x1
|
|
||||||
swi 0x25
|
|
||||||
bx lr
|
|
||||||
thumb_func_end MultiBoot
|
|
||||||
|
|
||||||
thumb_func_start ObjAffineSet
|
|
||||||
ObjAffineSet: @ 82E709C
|
|
||||||
swi 0xF
|
|
||||||
bx lr
|
|
||||||
thumb_func_end ObjAffineSet
|
|
||||||
|
|
||||||
thumb_func_start RLUnCompVram
|
|
||||||
RLUnCompVram: @ 82E70A0
|
|
||||||
swi 0x15
|
|
||||||
bx lr
|
|
||||||
thumb_func_end RLUnCompVram
|
|
||||||
|
|
||||||
thumb_func_start RLUnCompWram
|
|
||||||
RLUnCompWram: @ 82E70A4
|
|
||||||
swi 0x14
|
|
||||||
bx lr
|
|
||||||
thumb_func_end RLUnCompWram
|
|
||||||
|
|
||||||
thumb_func_start RegisterRamReset
|
|
||||||
@ void RegisterRamReset(int ResetFlags)
|
|
||||||
RegisterRamReset: @ 82E70A8
|
|
||||||
swi 0x1
|
|
||||||
bx lr
|
|
||||||
thumb_func_end RegisterRamReset
|
|
||||||
|
|
||||||
thumb_func_start SoftReset
|
|
||||||
@ void SoftReset()
|
|
||||||
SoftReset: @ 82E70AC
|
|
||||||
ldr r3, =REG_IME
|
|
||||||
movs r2, 0
|
|
||||||
strb r2, [r3]
|
|
||||||
ldr r1, =0x3007F00
|
|
||||||
mov sp, r1
|
|
||||||
swi 0x1
|
|
||||||
swi 0
|
|
||||||
.pool
|
|
||||||
thumb_func_end SoftReset
|
|
||||||
|
|
||||||
thumb_func_start Sqrt
|
|
||||||
@ s16 Sqrt(int)
|
|
||||||
Sqrt: @ 82E70C4
|
|
||||||
swi 0x8
|
|
||||||
bx lr
|
|
||||||
thumb_func_end Sqrt
|
|
||||||
|
|
||||||
thumb_func_start VBlankIntrWait
|
|
||||||
@ void VBlankIntrWait()
|
|
||||||
VBlankIntrWait: @ 82E70C8
|
|
||||||
movs r2, 0
|
|
||||||
swi 0x5
|
|
||||||
bx lr
|
|
||||||
thumb_func_end VBlankIntrWait
|
|
||||||
|
|
||||||
.align 2, 0 @ Don't pad with nop.
|
|
Loading…
x
Reference in New Issue
Block a user