├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── debug.S ├── gen_loader.py ├── generate_ptable.sh ├── l-loader.lds ├── rootfs.tar.gz ├── serial_pl011.h └── start.S /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/README.md -------------------------------------------------------------------------------- /debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/debug.S -------------------------------------------------------------------------------- /gen_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/gen_loader.py -------------------------------------------------------------------------------- /generate_ptable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/generate_ptable.sh -------------------------------------------------------------------------------- /l-loader.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/l-loader.lds -------------------------------------------------------------------------------- /rootfs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/rootfs.tar.gz -------------------------------------------------------------------------------- /serial_pl011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/serial_pl011.h -------------------------------------------------------------------------------- /start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/96boards/l-loader/HEAD/start.S --------------------------------------------------------------------------------