├── 3DModel ├── PiColeco_cart-Bot (Meshed).stl ├── PiColeco_cart-Top (Meshed).stl ├── PiColeco_cart-Top.gcode ├── PiColeco_cart.FCStd └── segoeuib.ttf ├── PCB ├── GERBER-PiCOLECO.zip └── PiCOLECO │ ├── Coleco-Card3-cache.lib │ ├── Coleco-Card3-rescue.kicad_sym │ ├── PiCOLECO.dsn │ ├── PiCOLECO.kicad_pcb │ ├── PiCOLECO.kicad_prl │ ├── PiCOLECO.kicad_pro │ ├── PiCOLECO.kicad_sch │ ├── PiCOLECO.pro │ ├── PiCOLECO.rules │ ├── PiCOLECO.sch │ ├── PiCOLECO.ses │ ├── fp-info-cache │ ├── fp-lib-table │ ├── jlcpcb │ ├── gerber │ │ ├── PiCOLECO-CuBottom.gbr │ │ ├── PiCOLECO-CuTop.gbr │ │ ├── PiCOLECO-EdgeCuts.gbr │ │ ├── PiCOLECO-MaskBottom.gbr │ │ ├── PiCOLECO-MaskTop.gbr │ │ ├── PiCOLECO-NPTH-drl_map.pdf │ │ ├── PiCOLECO-NPTH.drl │ │ ├── PiCOLECO-PTH-drl_map.pdf │ │ ├── PiCOLECO-PTH.drl │ │ ├── PiCOLECO-PasteBottom.gbr │ │ ├── PiCOLECO-PasteTop.gbr │ │ ├── PiCOLECO-SilkBottom.gbr │ │ ├── PiCOLECO-SilkTop.gbr │ │ └── PiCOLECO-VScore.gbr │ ├── production_files │ │ ├── BOM-PiCOLECO.csv │ │ ├── CPL-PiCOLECO.csv │ │ └── GERBER-PiCOLECO.zip │ └── project.db │ └── sym-lib-table ├── PICOLECO_1.0a.uf2 ├── PICOLECO_1.0b.uf2 ├── PICOLECO_1.0c.uf2 ├── PICOLECO_cart.uf2 ├── Pictures ├── picocv1.jpg ├── picocv2.jpg ├── picocv3.jpg ├── picocv4.jpg └── picocv5.jpg ├── README.md └── Source ├── CVBasic ├── cv_logo.bas ├── cv_logo.bmp └── splash.bas └── VSC-PICOLECO ├── CMakeLists.txt ├── CMakeSettings.json ├── coleco_cart.c ├── coleco_cart.h ├── fatfs ├── 00history.txt ├── 00readme.txt ├── diskio.c ├── diskio.h ├── ff.c ├── ff.h ├── ffconf.h ├── ffsystem.c └── ffunicode.c ├── fatfs_disk.c ├── fatfs_disk.h ├── flash_fs.c ├── flash_fs.h ├── main.c ├── memmap_custom.ld ├── msc_disk.c ├── myboard.h ├── pico_sdk_import.cmake ├── rom.h ├── tusb_config.h └── usb_descriptors.c /3DModel/PiColeco_cart-Bot (Meshed).stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/3DModel/PiColeco_cart-Bot (Meshed).stl -------------------------------------------------------------------------------- /3DModel/PiColeco_cart-Top (Meshed).stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/3DModel/PiColeco_cart-Top (Meshed).stl -------------------------------------------------------------------------------- /3DModel/PiColeco_cart-Top.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/3DModel/PiColeco_cart-Top.gcode -------------------------------------------------------------------------------- /3DModel/PiColeco_cart.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/3DModel/PiColeco_cart.FCStd -------------------------------------------------------------------------------- /3DModel/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/3DModel/segoeuib.ttf -------------------------------------------------------------------------------- /PCB/GERBER-PiCOLECO.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/GERBER-PiCOLECO.zip -------------------------------------------------------------------------------- /PCB/PiCOLECO/Coleco-Card3-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/Coleco-Card3-cache.lib -------------------------------------------------------------------------------- /PCB/PiCOLECO/Coleco-Card3-rescue.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/Coleco-Card3-rescue.kicad_sym -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.dsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.dsn -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.kicad_pcb -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.kicad_prl -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.kicad_pro -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.kicad_sch -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.pro -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.rules -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.sch -------------------------------------------------------------------------------- /PCB/PiCOLECO/PiCOLECO.ses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/PiCOLECO.ses -------------------------------------------------------------------------------- /PCB/PiCOLECO/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/fp-info-cache -------------------------------------------------------------------------------- /PCB/PiCOLECO/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/fp-lib-table -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-CuBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-CuBottom.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-CuTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-CuTop.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-EdgeCuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-EdgeCuts.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-MaskBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-MaskBottom.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-MaskTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-MaskTop.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-NPTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-NPTH-drl_map.pdf -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-NPTH.drl -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PTH-drl_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PTH-drl_map.pdf -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PTH.drl -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PasteBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PasteBottom.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PasteTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-PasteTop.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-SilkBottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-SilkBottom.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-SilkTop.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-SilkTop.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-VScore.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/gerber/PiCOLECO-VScore.gbr -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/production_files/BOM-PiCOLECO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/production_files/BOM-PiCOLECO.csv -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/production_files/CPL-PiCOLECO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/production_files/CPL-PiCOLECO.csv -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/production_files/GERBER-PiCOLECO.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/production_files/GERBER-PiCOLECO.zip -------------------------------------------------------------------------------- /PCB/PiCOLECO/jlcpcb/project.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PCB/PiCOLECO/jlcpcb/project.db -------------------------------------------------------------------------------- /PCB/PiCOLECO/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | ) 4 | -------------------------------------------------------------------------------- /PICOLECO_1.0a.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PICOLECO_1.0a.uf2 -------------------------------------------------------------------------------- /PICOLECO_1.0b.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PICOLECO_1.0b.uf2 -------------------------------------------------------------------------------- /PICOLECO_1.0c.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PICOLECO_1.0c.uf2 -------------------------------------------------------------------------------- /PICOLECO_cart.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/PICOLECO_cart.uf2 -------------------------------------------------------------------------------- /Pictures/picocv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Pictures/picocv1.jpg -------------------------------------------------------------------------------- /Pictures/picocv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Pictures/picocv2.jpg -------------------------------------------------------------------------------- /Pictures/picocv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Pictures/picocv3.jpg -------------------------------------------------------------------------------- /Pictures/picocv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Pictures/picocv4.jpg -------------------------------------------------------------------------------- /Pictures/picocv5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Pictures/picocv5.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/README.md -------------------------------------------------------------------------------- /Source/CVBasic/cv_logo.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/CVBasic/cv_logo.bas -------------------------------------------------------------------------------- /Source/CVBasic/cv_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/CVBasic/cv_logo.bmp -------------------------------------------------------------------------------- /Source/CVBasic/splash.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/CVBasic/splash.bas -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/CMakeLists.txt -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/CMakeSettings.json -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/coleco_cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/coleco_cart.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/coleco_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/coleco_cart.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/00history.txt -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/00readme.txt -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/diskio.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/diskio.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/ff.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/ff.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/ffconf.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/ffsystem.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs/ffunicode.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs_disk.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/fatfs_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/fatfs_disk.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/flash_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/flash_fs.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/flash_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/flash_fs.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/main.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/memmap_custom.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/memmap_custom.ld -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/msc_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/msc_disk.c -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/myboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/myboard.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/pico_sdk_import.cmake -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/rom.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/tusb_config.h -------------------------------------------------------------------------------- /Source/VSC-PICOLECO/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aotta/PiCOLECO/HEAD/Source/VSC-PICOLECO/usb_descriptors.c --------------------------------------------------------------------------------