/* Linker Script Original v1.3 by Jeff Frohwein */ /* v1.0 - Original release */ /* v1.1 - Added proper .data section support */ /* v1.2 - Added support for c++ & iwram overlays */ /* - Major contributions by Jason Wilkins. */ /* v1.3 - .ewram section now can be used when */ /* compiling for MULTIBOOT mode. This fixes */ /* malloc() in DevKitAdvance which depends */ /* on __eheap_start instead of end to define*/ /* the starting location of heap space. */ /* External global variable __gba_iwram_heap*/ /* support added to allow labels end, _end, */ /* & __end__ to point to end of iwram or */ /* the end of ewram. */ /* Additions by WinterMute */ /* v1.4 - .sbss section added for unitialised */ /* data in ewram */ /* v1.5 - padding section added to stop EZF */ /* stripping important data */ /* v1.6 - added memory sections */ /* This file is released into the public domain */ /* for commercial or non-commercial use with no */ /* restrictions placed upon it. */ /* NOTE!!!: This linker script defines the RAM & */ /* ROM start addresses. In order for it to work */ /* properly, remove -Ttext and -Tbss linker */ /* options from your makefile if they are */ /* present. */ /* You can use the following to view section */ /* addresses in your .elf file: */ /* objdump -h file.elf */ /* Please note that empty sections may incorrectly*/ /* list the lma address as the vma address for */ /* some versions of objdump. */ OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm") OUTPUT_ARCH(arm) ENTRY(_start) MEMORY { rom : ORIGIN = 0x08000000, LENGTH = 32M iwram : ORIGIN = 0x03000000, LENGTH = 32K ewram : ORIGIN = 0x02000000, LENGTH = 256K } __text_start = ORIGIN(ewram); __eheap_end = ORIGIN(ewram) + LENGTH(ewram); __iwram_start = ORIGIN(iwram); __iwram_top = ORIGIN(iwram) + LENGTH(iwram);; __sp_irq = __iwram_top - 0x060; __sp_usr = __sp_irq - 0x0a0; __irq_flags = 0x03007ff8; SECTIONS { . = __text_start; .init : { KEEP (*(.init)) . = ALIGN(4); } >ewram =0xff .plt : { *(.plt) . = ALIGN(4); /* REQUIRED. LD is flaky without it. */ } >ewram .text ALIGN (4): { *(EXCLUDE_FILE (*.iwram*) .text) *(.text .stub .text.* .gnu.linkonce.t.*) KEEP (*(.text.*personality*)) /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) *(.glue_7t) *(.glue_7) *(.vfp11_veneer) . = ALIGN(4); /* REQUIRED. LD is flaky without it. */ } >ewram = 0xff __text_end = .; .fini : { KEEP (*(.fini)) . = ALIGN(4); /* REQUIRED. LD is flaky without it. */ } >ewram =0 .rodata : { *(.rodata) *all.rodata*(*) *(.roda) *(.rodata.*) *(.gnu.linkonce.r*) SORT(CONSTRUCTORS) . = ALIGN(4); /* REQUIRED. LD is flaky without it. */ } >ewram = 0xff .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >ewram __exidx_start = .; .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } >ewram __exidx_end = .; /* Ensure the __preinit_array_start label is properly aligned. We could instead move the label definition inside the section, but the linker would then create the section even if it turns out to be empty, which isn't pretty. */ . = ALIGN(32 / 8); PROVIDE (__preinit_array_start = .); .preinit_array : { KEEP (*(.preinit_array)) } >ewram = 0xff PROVIDE (__prei
[submodule "vendor/hkutil"]
	path = vendor/hkutil
	url = https://git.fourisland.com/hkutil
[submodule "vendor/apclientpp"]
	path = vendor/apclientpp
	url = https://github.com/black-sliver/apclientpp.git
[submodule "vendor/valijson"]
	path = vendor/valijson
	url = https://github.com/tristanpenman/valijson.git
[submodule "vendor/wswrap"]
	path = vendor/wswrap
	url = https://github.com/black-sliver/wswrap.git
[submodule "vendor/asio"]
	path = vendor/asio
	url = https://github.com/chriskohlhoff/asio/
[submodule "vendor/vcpkg"]
	path = vendor/vcpkg
	url = https://github.com/Microsoft/vcpkg.git