mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 01:21:34 +11:00
format numbers nicer
This commit is contained in:
parent
66d5278558
commit
239bcbe81b
6
gba.ld
6
gba.ld
|
@ -4,9 +4,9 @@ OUTPUT_ARCH(arm)
|
||||||
ENTRY(__start)
|
ENTRY(__start)
|
||||||
|
|
||||||
MEMORY {
|
MEMORY {
|
||||||
ewram (w!x) : ORIGIN = 0x2000000, LENGTH = 256K
|
ewram (w!x) : ORIGIN = 0x02000000, LENGTH = 256K
|
||||||
iwram (w!x) : ORIGIN = 0x3000000, LENGTH = 32K
|
iwram (w!x) : ORIGIN = 0x03000000, LENGTH = 32K
|
||||||
rom (rx) : ORIGIN = 0x8000000, LENGTH = 32M
|
rom (rx) : ORIGIN = 0x08000000, LENGTH = 32M
|
||||||
}
|
}
|
||||||
|
|
||||||
__text_start = ORIGIN(rom);
|
__text_start = ORIGIN(rom);
|
||||||
|
|
Loading…
Reference in a new issue