├── LICENSE ├── README.md ├── env.bat ├── payloads ├── emmc-dump │ ├── Makefile │ ├── linker.x │ └── source │ │ ├── include │ │ ├── brom1k.h │ │ ├── brom1k_linker.x │ │ ├── bromcem.h │ │ └── bromcem_linker.x │ │ ├── rpcp.c │ │ └── rpcp.h ├── keydumper │ ├── Makefile │ ├── linker.x │ └── source │ │ ├── rpcp.c │ │ └── rpcp.h ├── keyglitch │ ├── Makefile │ ├── linker.x │ └── source │ │ ├── rpcp.c │ │ └── rpcp.h └── stage1 │ └── sd │ ├── Makefile │ ├── cfg_4v2.x │ ├── stage1.s │ ├── stage1_4v2.bin │ └── stage1_4v2.elf ├── pcb └── generic │ ├── fab │ ├── try2-B_Cu.gbr │ ├── try2-B_Mask.gbr │ ├── try2-B_Paste.gbr │ ├── try2-B_Silkscreen.gbr │ ├── try2-Edge_Cuts.gbr │ ├── try2-F_Cu.gbr │ ├── try2-F_Mask.gbr │ ├── try2-F_Paste.gbr │ ├── try2-F_Silkscreen.gbr │ ├── try2-NPTH-drl_map.gbr │ ├── try2-NPTH.drl │ ├── try2-PTH-drl_map.gbr │ ├── try2-PTH.drl │ ├── try2-fab.zip │ └── try2-job.gbrjob │ ├── fp-info-cache │ ├── try2-backups │ └── try2-2023-12-09_155253.zip │ ├── try2.kicad_pcb │ ├── try2.kicad_prl │ ├── try2.kicad_pro │ └── try2.kicad_sch ├── pics ├── laview-cutoff.png ├── laview-uptoread.png └── sdboot_sram.png ├── sdboot.py ├── sdwire.py ├── tools ├── mkfake.c └── snvs.py └── wiring ├── n_mos.png ├── wires-pch1k.png ├── wires-vte-back.png ├── wires-vte-front.png └── wiring.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/README.md -------------------------------------------------------------------------------- /env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/env.bat -------------------------------------------------------------------------------- /payloads/emmc-dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/Makefile -------------------------------------------------------------------------------- /payloads/emmc-dump/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/linker.x -------------------------------------------------------------------------------- /payloads/emmc-dump/source/include/brom1k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/include/brom1k.h -------------------------------------------------------------------------------- /payloads/emmc-dump/source/include/brom1k_linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/include/brom1k_linker.x -------------------------------------------------------------------------------- /payloads/emmc-dump/source/include/bromcem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/include/bromcem.h -------------------------------------------------------------------------------- /payloads/emmc-dump/source/include/bromcem_linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/include/bromcem_linker.x -------------------------------------------------------------------------------- /payloads/emmc-dump/source/rpcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/rpcp.c -------------------------------------------------------------------------------- /payloads/emmc-dump/source/rpcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/emmc-dump/source/rpcp.h -------------------------------------------------------------------------------- /payloads/keydumper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keydumper/Makefile -------------------------------------------------------------------------------- /payloads/keydumper/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keydumper/linker.x -------------------------------------------------------------------------------- /payloads/keydumper/source/rpcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keydumper/source/rpcp.c -------------------------------------------------------------------------------- /payloads/keydumper/source/rpcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keydumper/source/rpcp.h -------------------------------------------------------------------------------- /payloads/keyglitch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keyglitch/Makefile -------------------------------------------------------------------------------- /payloads/keyglitch/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keyglitch/linker.x -------------------------------------------------------------------------------- /payloads/keyglitch/source/rpcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keyglitch/source/rpcp.c -------------------------------------------------------------------------------- /payloads/keyglitch/source/rpcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/keyglitch/source/rpcp.h -------------------------------------------------------------------------------- /payloads/stage1/sd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/stage1/sd/Makefile -------------------------------------------------------------------------------- /payloads/stage1/sd/cfg_4v2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/stage1/sd/cfg_4v2.x -------------------------------------------------------------------------------- /payloads/stage1/sd/stage1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/stage1/sd/stage1.s -------------------------------------------------------------------------------- /payloads/stage1/sd/stage1_4v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/stage1/sd/stage1_4v2.bin -------------------------------------------------------------------------------- /payloads/stage1/sd/stage1_4v2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/payloads/stage1/sd/stage1_4v2.elf -------------------------------------------------------------------------------- /pcb/generic/fab/try2-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-B_Cu.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-B_Mask.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-B_Paste.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-B_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-Edge_Cuts.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-F_Cu.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-F_Mask.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-F_Paste.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-F_Silkscreen.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-NPTH-drl_map.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-NPTH-drl_map.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-NPTH.drl -------------------------------------------------------------------------------- /pcb/generic/fab/try2-PTH-drl_map.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-PTH-drl_map.gbr -------------------------------------------------------------------------------- /pcb/generic/fab/try2-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-PTH.drl -------------------------------------------------------------------------------- /pcb/generic/fab/try2-fab.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-fab.zip -------------------------------------------------------------------------------- /pcb/generic/fab/try2-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fab/try2-job.gbrjob -------------------------------------------------------------------------------- /pcb/generic/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/fp-info-cache -------------------------------------------------------------------------------- /pcb/generic/try2-backups/try2-2023-12-09_155253.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/try2-backups/try2-2023-12-09_155253.zip -------------------------------------------------------------------------------- /pcb/generic/try2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/try2.kicad_pcb -------------------------------------------------------------------------------- /pcb/generic/try2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/try2.kicad_prl -------------------------------------------------------------------------------- /pcb/generic/try2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/try2.kicad_pro -------------------------------------------------------------------------------- /pcb/generic/try2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pcb/generic/try2.kicad_sch -------------------------------------------------------------------------------- /pics/laview-cutoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pics/laview-cutoff.png -------------------------------------------------------------------------------- /pics/laview-uptoread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pics/laview-uptoread.png -------------------------------------------------------------------------------- /pics/sdboot_sram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/pics/sdboot_sram.png -------------------------------------------------------------------------------- /sdboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/sdboot.py -------------------------------------------------------------------------------- /sdwire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/sdwire.py -------------------------------------------------------------------------------- /tools/mkfake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/tools/mkfake.c -------------------------------------------------------------------------------- /tools/snvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/tools/snvs.py -------------------------------------------------------------------------------- /wiring/n_mos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/wiring/n_mos.png -------------------------------------------------------------------------------- /wiring/wires-pch1k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/wiring/wires-pch1k.png -------------------------------------------------------------------------------- /wiring/wires-vte-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/wiring/wires-vte-back.png -------------------------------------------------------------------------------- /wiring/wires-vte-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/wiring/wires-vte-front.png -------------------------------------------------------------------------------- /wiring/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2sdboot/HEAD/wiring/wiring.png --------------------------------------------------------------------------------