├── .gitignore ├── Makefile ├── README.md ├── inc ├── arm │ ├── cache.h │ └── cpu.h ├── asm.h ├── common.h ├── hw │ ├── irq.h │ ├── pxi.h │ ├── sdmmc.h │ └── timer.h ├── interrupt.h ├── pxicmd.h └── ringbuffer.h ├── link.ld ├── linux-3ds-5.0.3.patch └── src ├── arm ├── err.c └── vectors.s ├── hw ├── irq.c ├── prng.c ├── pxi.c ├── sdmmc.c └── timer.c ├── pxicmd.c ├── start.s └── system.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | *.bin 3 | bin/ 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/README.md -------------------------------------------------------------------------------- /inc/arm/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/arm/cache.h -------------------------------------------------------------------------------- /inc/arm/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/arm/cpu.h -------------------------------------------------------------------------------- /inc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/asm.h -------------------------------------------------------------------------------- /inc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/common.h -------------------------------------------------------------------------------- /inc/hw/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/hw/irq.h -------------------------------------------------------------------------------- /inc/hw/pxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/hw/pxi.h -------------------------------------------------------------------------------- /inc/hw/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/hw/sdmmc.h -------------------------------------------------------------------------------- /inc/hw/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/hw/timer.h -------------------------------------------------------------------------------- /inc/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/interrupt.h -------------------------------------------------------------------------------- /inc/pxicmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/pxicmd.h -------------------------------------------------------------------------------- /inc/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/inc/ringbuffer.h -------------------------------------------------------------------------------- /link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/link.ld -------------------------------------------------------------------------------- /linux-3ds-5.0.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/linux-3ds-5.0.3.patch -------------------------------------------------------------------------------- /src/arm/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/arm/err.c -------------------------------------------------------------------------------- /src/arm/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/arm/vectors.s -------------------------------------------------------------------------------- /src/hw/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/hw/irq.c -------------------------------------------------------------------------------- /src/hw/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/hw/prng.c -------------------------------------------------------------------------------- /src/hw/pxi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/hw/pxi.c -------------------------------------------------------------------------------- /src/hw/sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/hw/sdmmc.c -------------------------------------------------------------------------------- /src/hw/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/hw/timer.c -------------------------------------------------------------------------------- /src/pxicmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/pxicmd.c -------------------------------------------------------------------------------- /src/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/start.s -------------------------------------------------------------------------------- /src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfvak/arm9linuxfw-old/HEAD/src/system.c --------------------------------------------------------------------------------