From e81de2b33a29d154e9279547da409e7f021d2b1a Mon Sep 17 00:00:00 2001 From: Michael Chisholm Date: Thu, 11 Jan 2007 11:23:52 +0000 Subject: [PATCH] Modified header to include RAM start address --- source/disc_io/io_dldi.s | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/disc_io/io_dldi.s b/source/disc_io/io_dldi.s index 8d21522..3c71649 100644 --- a/source/disc_io/io_dldi.s +++ b/source/disc_io/io_dldi.s @@ -9,6 +9,8 @@ .equ FEATURE_SLOT_NDS, 0x00000020 +_dldi_start: + @--------------------------------------------------------------------------------- @ Driver patch file standard header -- 16 bytes .word 0xBF8DA5ED @ Magic number to identify this region @@ -26,8 +28,8 @@ @--------------------------------------------------------------------------------- @ Offsets to important sections within the data -- 32 bytes .align 6 - .word 0x00000000 @ data start - .word 0x00000000 @ data end + .word _dldi_start @ data start + .word _dldi_end @ data end .word 0x00000000 @ Interworking glue start -- Needs address fixing .word 0x00000000 @ Interworking glue end .word 0x00000000 @ GOT start -- Needs address fixing @@ -66,5 +68,6 @@ _DLDI_shutdown: .space 32632 @ Fill to 32KiB +_dldi_end: .end @---------------------------------------------------------------------------------