├── README ├── TOOLCHAIN ├── armjtag ├── Makefile ├── README ├── ft232h.cfg ├── jlink.cfg ├── memmap ├── notmain.c ├── raspi.cfg └── vectors.s ├── blinker01 ├── Makefile ├── README ├── kernel.img ├── memmap ├── notmain.c ├── notmain.elf ├── notmain.list ├── notmain.o ├── notmain.srec ├── vectors.o └── vectors.s ├── blinker02 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── blinker03 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── blinker04 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── blinker05 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── bootloader.img ├── bootloader10 ├── Makefile ├── README ├── loader ├── notmain.c ├── periph.c └── vectors.s ├── bootstrap ├── Makefile ├── README ├── bootstrap.s ├── bootstrap.txt ├── memmap ├── notmain.c ├── periph.c └── start.s ├── float01 ├── Makefile ├── README ├── fun.c ├── memmap ├── notmain.c ├── periph.c └── start.s ├── heartbeat ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── kernel.img ├── mmu ├── Makefile ├── README ├── coarse_translation.ps ├── memmap ├── notmain.c ├── novectors.s ├── periph.c ├── section_translation.ps └── start.s ├── mysetup.png ├── reset_switch1.jpg ├── reset_switch2.jpg ├── swi00 ├── Makefile ├── README ├── memmap ├── notmain.c ├── periph.c └── start.s ├── uart01 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── uart02 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── uart03 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s ├── uart04 ├── Makefile ├── README ├── memmap ├── notmain.c └── vectors.s └── uart05 ├── Makefile ├── README ├── memmap ├── notmain.c ├── periph.c └── start.s /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/README -------------------------------------------------------------------------------- /TOOLCHAIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/TOOLCHAIN -------------------------------------------------------------------------------- /armjtag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/Makefile -------------------------------------------------------------------------------- /armjtag/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /armjtag/ft232h.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/ft232h.cfg -------------------------------------------------------------------------------- /armjtag/jlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/jlink.cfg -------------------------------------------------------------------------------- /armjtag/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/memmap -------------------------------------------------------------------------------- /armjtag/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/notmain.c -------------------------------------------------------------------------------- /armjtag/raspi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/raspi.cfg -------------------------------------------------------------------------------- /armjtag/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/armjtag/vectors.s -------------------------------------------------------------------------------- /blinker01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/Makefile -------------------------------------------------------------------------------- /blinker01/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/README -------------------------------------------------------------------------------- /blinker01/kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/kernel.img -------------------------------------------------------------------------------- /blinker01/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/memmap -------------------------------------------------------------------------------- /blinker01/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/notmain.c -------------------------------------------------------------------------------- /blinker01/notmain.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/notmain.elf -------------------------------------------------------------------------------- /blinker01/notmain.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/notmain.list -------------------------------------------------------------------------------- /blinker01/notmain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/notmain.o -------------------------------------------------------------------------------- /blinker01/notmain.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/notmain.srec -------------------------------------------------------------------------------- /blinker01/vectors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/vectors.o -------------------------------------------------------------------------------- /blinker01/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker01/vectors.s -------------------------------------------------------------------------------- /blinker02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker02/Makefile -------------------------------------------------------------------------------- /blinker02/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker02/README -------------------------------------------------------------------------------- /blinker02/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker02/memmap -------------------------------------------------------------------------------- /blinker02/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker02/notmain.c -------------------------------------------------------------------------------- /blinker02/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker02/vectors.s -------------------------------------------------------------------------------- /blinker03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker03/Makefile -------------------------------------------------------------------------------- /blinker03/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker03/README -------------------------------------------------------------------------------- /blinker03/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker03/memmap -------------------------------------------------------------------------------- /blinker03/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker03/notmain.c -------------------------------------------------------------------------------- /blinker03/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker03/vectors.s -------------------------------------------------------------------------------- /blinker04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker04/Makefile -------------------------------------------------------------------------------- /blinker04/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker04/README -------------------------------------------------------------------------------- /blinker04/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker04/memmap -------------------------------------------------------------------------------- /blinker04/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker04/notmain.c -------------------------------------------------------------------------------- /blinker04/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker04/vectors.s -------------------------------------------------------------------------------- /blinker05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker05/Makefile -------------------------------------------------------------------------------- /blinker05/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker05/README -------------------------------------------------------------------------------- /blinker05/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker05/memmap -------------------------------------------------------------------------------- /blinker05/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker05/notmain.c -------------------------------------------------------------------------------- /blinker05/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/blinker05/vectors.s -------------------------------------------------------------------------------- /bootloader.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader.img -------------------------------------------------------------------------------- /bootloader10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/Makefile -------------------------------------------------------------------------------- /bootloader10/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/README -------------------------------------------------------------------------------- /bootloader10/loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/loader -------------------------------------------------------------------------------- /bootloader10/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/notmain.c -------------------------------------------------------------------------------- /bootloader10/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/periph.c -------------------------------------------------------------------------------- /bootloader10/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootloader10/vectors.s -------------------------------------------------------------------------------- /bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/Makefile -------------------------------------------------------------------------------- /bootstrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/README -------------------------------------------------------------------------------- /bootstrap/bootstrap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/bootstrap.s -------------------------------------------------------------------------------- /bootstrap/bootstrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/bootstrap.txt -------------------------------------------------------------------------------- /bootstrap/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/memmap -------------------------------------------------------------------------------- /bootstrap/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/notmain.c -------------------------------------------------------------------------------- /bootstrap/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/periph.c -------------------------------------------------------------------------------- /bootstrap/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/bootstrap/start.s -------------------------------------------------------------------------------- /float01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/Makefile -------------------------------------------------------------------------------- /float01/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/README -------------------------------------------------------------------------------- /float01/fun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/fun.c -------------------------------------------------------------------------------- /float01/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/memmap -------------------------------------------------------------------------------- /float01/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/notmain.c -------------------------------------------------------------------------------- /float01/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/periph.c -------------------------------------------------------------------------------- /float01/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/float01/start.s -------------------------------------------------------------------------------- /heartbeat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/heartbeat/Makefile -------------------------------------------------------------------------------- /heartbeat/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/heartbeat/README -------------------------------------------------------------------------------- /heartbeat/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/heartbeat/memmap -------------------------------------------------------------------------------- /heartbeat/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/heartbeat/notmain.c -------------------------------------------------------------------------------- /heartbeat/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/heartbeat/vectors.s -------------------------------------------------------------------------------- /kernel.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/kernel.img -------------------------------------------------------------------------------- /mmu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/Makefile -------------------------------------------------------------------------------- /mmu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/README -------------------------------------------------------------------------------- /mmu/coarse_translation.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/coarse_translation.ps -------------------------------------------------------------------------------- /mmu/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/memmap -------------------------------------------------------------------------------- /mmu/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/notmain.c -------------------------------------------------------------------------------- /mmu/novectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/novectors.s -------------------------------------------------------------------------------- /mmu/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/periph.c -------------------------------------------------------------------------------- /mmu/section_translation.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/section_translation.ps -------------------------------------------------------------------------------- /mmu/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mmu/start.s -------------------------------------------------------------------------------- /mysetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/mysetup.png -------------------------------------------------------------------------------- /reset_switch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/reset_switch1.jpg -------------------------------------------------------------------------------- /reset_switch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/reset_switch2.jpg -------------------------------------------------------------------------------- /swi00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/Makefile -------------------------------------------------------------------------------- /swi00/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/README -------------------------------------------------------------------------------- /swi00/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/memmap -------------------------------------------------------------------------------- /swi00/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/notmain.c -------------------------------------------------------------------------------- /swi00/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/periph.c -------------------------------------------------------------------------------- /swi00/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/swi00/start.s -------------------------------------------------------------------------------- /uart01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart01/Makefile -------------------------------------------------------------------------------- /uart01/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart01/README -------------------------------------------------------------------------------- /uart01/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart01/memmap -------------------------------------------------------------------------------- /uart01/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart01/notmain.c -------------------------------------------------------------------------------- /uart01/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart01/vectors.s -------------------------------------------------------------------------------- /uart02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart02/Makefile -------------------------------------------------------------------------------- /uart02/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart02/README -------------------------------------------------------------------------------- /uart02/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart02/memmap -------------------------------------------------------------------------------- /uart02/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart02/notmain.c -------------------------------------------------------------------------------- /uart02/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart02/vectors.s -------------------------------------------------------------------------------- /uart03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart03/Makefile -------------------------------------------------------------------------------- /uart03/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart03/README -------------------------------------------------------------------------------- /uart03/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart03/memmap -------------------------------------------------------------------------------- /uart03/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart03/notmain.c -------------------------------------------------------------------------------- /uart03/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart03/vectors.s -------------------------------------------------------------------------------- /uart04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart04/Makefile -------------------------------------------------------------------------------- /uart04/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart04/README -------------------------------------------------------------------------------- /uart04/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart04/memmap -------------------------------------------------------------------------------- /uart04/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart04/notmain.c -------------------------------------------------------------------------------- /uart04/vectors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart04/vectors.s -------------------------------------------------------------------------------- /uart05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/Makefile -------------------------------------------------------------------------------- /uart05/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/README -------------------------------------------------------------------------------- /uart05/memmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/memmap -------------------------------------------------------------------------------- /uart05/notmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/notmain.c -------------------------------------------------------------------------------- /uart05/periph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/periph.c -------------------------------------------------------------------------------- /uart05/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwelch67/raspberrypi-zero/HEAD/uart05/start.s --------------------------------------------------------------------------------