├── .DS_Store ├── .github └── FUNDING.yml ├── Images ├── .DS_Store ├── Canada_wordmark.png └── Open-source-hardware-logo.png ├── README.md ├── doc ├── .DS_Store ├── application notes │ └── AN551.pdf ├── datasheets │ ├── .DS_Store │ ├── Si5351_B-2507774.pdf │ ├── W65C265S Datasheet.pdf │ └── W65C816S Datasheet.pdf └── manuals │ ├── .DS_Store │ └── W65C265S Monitor ROM Manual.pdf ├── firmware ├── .DS_Store └── kernel │ ├── .DS_Store │ ├── Makefile │ ├── config │ ├── config.mk │ ├── memory.scm │ ├── sdk-config.mk │ └── sdk-targets.mk │ ├── include │ ├── .DS_Store │ ├── config.h │ ├── device.h │ ├── drivers │ │ ├── .DS_Store │ │ ├── fatfs │ │ │ ├── LICENSE.txt │ │ │ ├── diskio.h │ │ │ ├── ff.h │ │ │ └── ffconf.h │ │ ├── null.h │ │ ├── random.h │ │ └── spi.h │ ├── fcb.h │ └── unistd.h │ └── src │ ├── .DS_Store │ ├── device.c │ ├── device.o │ ├── drivers │ ├── .DS_Store │ ├── fatfs │ │ ├── LICENSE.txt │ │ ├── diskio.c │ │ ├── ff.c │ │ ├── ffsystem.c │ │ └── ffunicode.c │ ├── null.c │ ├── random.c │ └── spi.c │ ├── fcb.c │ └── main.c ├── glue logic ├── .DS_Store └── glue_logic.pld ├── kicad ├── .DS_Store ├── AV Boards │ ├── .DS_Store │ └── SVGA & RCA Audio AV Board │ │ ├── SVGA & RCA Audio AV Board-backups │ │ ├── SVGA & RCA Audio AV Board-2024-03-12_041605.zip │ │ ├── SVGA & RCA Audio AV Board-2024-03-12_042610.zip │ │ ├── SVGA & RCA Audio AV Board-2024-03-12_044422.zip │ │ ├── SVGA & RCA Audio AV Board-2024-03-12_050508.zip │ │ ├── SVGA & RCA Audio AV Board-2024-03-12_151923.zip │ │ └── SVGA & RCA Audio AV Board-2024-03-12_162410.zip │ │ ├── SVGA & RCA Audio AV Board.bak │ │ ├── SVGA & RCA Audio AV Board.kicad_pcb │ │ ├── SVGA & RCA Audio AV Board.kicad_prl │ │ ├── SVGA & RCA Audio AV Board.kicad_pro │ │ ├── SVGA & RCA Audio AV Board.kicad_sch │ │ ├── SVGA & RCA Audio AV Board.kicad_sym │ │ ├── SVGA & RCA Audio AV Board.pretty │ │ └── Kobiconn 156-009X RCA Connector.kicad_mod │ │ ├── fp-info-cache │ │ ├── fp-lib-table │ │ └── sym-lib-table ├── Cartridges │ ├── .DS_Store │ ├── Sentinel 65X - 1024KB ROM Cartridge │ │ ├── Sentinel 65X - 1024KB ROM Cartridge.kicad_pcb │ │ ├── Sentinel 65X - 1024KB ROM Cartridge.kicad_prl │ │ ├── Sentinel 65X - 1024KB ROM Cartridge.kicad_pro │ │ ├── Sentinel 65X - 1024KB ROM Cartridge.kicad_sch │ │ └── fp-info-cache │ ├── Sentinel 65X - 512KB RAM & ROM Cartridge │ │ ├── Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pcb │ │ ├── Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_prl │ │ ├── Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pro │ │ ├── Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_sch │ │ └── fp-info-cache │ └── Sentinel 65X - 512KB ROM Cartridge │ │ ├── Sentinel 65X - 512KB ROM Cartridge.kicad_pcb │ │ ├── Sentinel 65X - 512KB ROM Cartridge.kicad_prl │ │ ├── Sentinel 65X - 512KB ROM Cartridge.kicad_pro │ │ ├── Sentinel 65X - 512KB ROM Cartridge.kicad_sch │ │ └── fp-info-cache ├── IO Boards │ └── Basic IO Board │ │ ├── Basic IO Board-backups │ │ └── Basic IO Board-2024-03-12_182700.zip │ │ ├── Basic IO Board.kicad_pcb │ │ ├── Basic IO Board.kicad_prl │ │ ├── Basic IO Board.kicad_pro │ │ └── Basic IO Board.kicad_sch ├── Sentinel 65X - Prototype 3 Mini │ ├── .DS_Store │ ├── Gerbers │ │ ├── .DS_Store │ │ ├── Sentinel 65X - Prototype 3 Mini-B_Cu.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-B_Mask.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-B_Paste.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-B_Silkscreen.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-Edge_Cuts.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-F_Cu.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-F_Mask.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-F_Paste.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-F_Silkscreen.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-In1_Cu.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-In2_Cu.gbr │ │ ├── Sentinel 65X - Prototype 3 Mini-NPTH.drl │ │ ├── Sentinel 65X - Prototype 3 Mini-PTH.drl │ │ └── Sentinel 65X - Prototype 3 Mini-job.gbrjob │ ├── Open-source-hardware-logo.svg │ ├── PLD │ │ ├── Sentinel 65X - Prototype 3 Mini.chp │ │ ├── Sentinel 65X - Prototype 3 Mini.fus │ │ ├── Sentinel 65X - Prototype 3 Mini.jed │ │ ├── Sentinel 65X - Prototype 3 Mini.pin │ │ ├── Sentinel 65X - Prototype 3 Mini.pld │ │ └── Sentinel 65X - Prototype 3 Mini2.jed │ ├── Sentinel 65X - Prototype 3 Mini-backups │ │ ├── Sentinel 65X - Prototype 3 Mini-2024-03-01_223152.zip │ │ ├── Sentinel 65X - Prototype 3 Mini-2024-03-06_174301.zip │ │ ├── Sentinel 65X - Prototype 3 Mini-2024-03-15_214558.zip │ │ ├── Sentinel 65X - Prototype 3 Mini-2024-03-15_224640.zip │ │ └── Sentinel 65X - Prototype 3 Mini-2024-03-16_192945.zip │ ├── Sentinel 65X - Prototype 3 Mini.kicad_pcb │ ├── Sentinel 65X - Prototype 3 Mini.kicad_prl │ ├── Sentinel 65X - Prototype 3 Mini.kicad_pro │ ├── Sentinel 65X - Prototype 3 Mini.kicad_sch │ ├── Untitled │ │ ├── .DS_Store │ │ ├── Gerbers │ │ │ ├── .DS_Store │ │ │ ├── Untitled-B_Cu.gbr │ │ │ ├── Untitled-B_Mask.gbr │ │ │ ├── Untitled-B_Paste.gbr │ │ │ ├── Untitled-B_Silkscreen.gbr │ │ │ ├── Untitled-Edge_Cuts.gbr │ │ │ ├── Untitled-F_Cu.gbr │ │ │ ├── Untitled-F_Mask.gbr │ │ │ ├── Untitled-F_Paste.gbr │ │ │ ├── Untitled-F_Silkscreen.gbr │ │ │ ├── Untitled-In1_Cu.gbr │ │ │ ├── Untitled-In2_Cu.gbr │ │ │ ├── Untitled-NPTH.drl │ │ │ ├── Untitled-PTH.drl │ │ │ └── Untitled-job.gbrjob │ │ ├── Open-source-hardware-logo.svg │ │ ├── Untitled.kicad_pcb │ │ ├── Untitled.kicad_prl │ │ ├── Untitled.kicad_pro │ │ ├── Untitled.kicad_sch │ │ ├── bom │ │ │ └── ibom.html │ │ └── fp-info-cache │ ├── bom │ │ └── ibom.html │ └── fp-info-cache ├── Sentinel 65X - Prototype 4 V2 │ ├── AV Port.kicad_sch │ ├── CPU.kicad_sch │ ├── Cartridge Port.kicad_sch │ ├── Expansion Ports.kicad_sch │ ├── Glue Logic.kicad_sch │ ├── IO Port.kicad_sch │ ├── On-Board Memory.kicad_sch │ ├── Power Supply.kicad_sch │ ├── Sentinel 65X - Prototype 4 V2-backups │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-10_224206.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-10_234817.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-10_235846.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-11_225627.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-11_231858.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-11_233412.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-11_234037.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-11_234752.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-12_231658.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-12_232228.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-12_232756.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-12_233409.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-12_234202.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-13_174506.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-13_184513.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-13_185015.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-13_185516.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-13_192141.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-14_224248.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-14_224841.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-14_225424.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-14_233043.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-14_235925.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-15_203554.zip │ │ ├── Sentinel 65X - Prototype 4 V2-2024-03-16_193046.zip │ │ └── Sentinel 65X - Prototype 4 V2-2024-03-17_113425.zip │ ├── Sentinel 65X - Prototype 4 V2.bak │ ├── Sentinel 65X - Prototype 4 V2.kicad_pcb │ ├── Sentinel 65X - Prototype 4 V2.kicad_prl │ ├── Sentinel 65X - Prototype 4 V2.kicad_pro │ ├── Sentinel 65X - Prototype 4 V2.kicad_sch │ ├── Sentinel 65X - Prototype 4 V2.kicad_sym │ ├── Sentinel 65X - Prototype 4 V2.pdf │ ├── Sentinel 65X - Prototype 4 V2.pretty │ │ ├── PMEG3005AESFYL.kicad_mod │ │ ├── SESD8008MUTAG.kicad_mod │ │ ├── SON50P160X400X65-17N.kicad_mod │ │ ├── Sentinel 65X Cartridge Port.kicad_mod │ │ └── Sentinel 65X Expansion Port.kicad_mod │ ├── System Memory.kicad_sch │ ├── USB-Serial Bridge.kicad_sch │ ├── VERA.kicad_sch │ ├── W65C265S CPU.kicad_sch │ ├── fp-info-cache │ ├── fp-lib-table │ └── sym-lib-table ├── Sentinel 65X - Prototype 4 │ ├── .DS_Store │ ├── Sentinel 65X - Prototype 4-backups │ │ ├── Sentinel 65X - Prototype 4-2024-02-26_002030.zip │ │ ├── Sentinel 65X - Prototype 4-2024-02-26_202434.zip │ │ ├── Sentinel 65X - Prototype 4-2024-02-26_225729.zip │ │ ├── Sentinel 65X - Prototype 4-2024-02-27_144331.zip │ │ ├── Sentinel 65X - Prototype 4-2024-02-29_155318.zip │ │ ├── Sentinel 65X - Prototype 4-2024-02-29_214034.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-01_232208.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-04_224259.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-06_213414.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-06_214254.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-06_215426.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-06_221749.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-06_222449.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-12_034037.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-12_162414.zip │ │ ├── Sentinel 65X - Prototype 4-2024-03-12_183012.zip │ │ └── Sentinel 65X - Prototype 4-2024-03-12_194530.zip │ ├── Sentinel 65X - Prototype 4.kicad_pcb │ ├── Sentinel 65X - Prototype 4.kicad_prl │ ├── Sentinel 65X - Prototype 4.kicad_pro │ ├── Sentinel 65X - Prototype 4.kicad_sch │ ├── Sentinel 65X - Prototype 4.pdf │ ├── fp-info-cache │ └── production │ │ ├── .DS_Store │ │ ├── Sentinel 65X - Prototype 4-B_Cu (MISC).gbr │ │ ├── Sentinel 65X - Prototype 4-B_Mask.gbr │ │ ├── Sentinel 65X - Prototype 4-B_Paste.gbr │ │ ├── Sentinel 65X - Prototype 4-B_Silkscreen.gbr │ │ ├── Sentinel 65X - Prototype 4-Edge_Cuts.gbr │ │ ├── Sentinel 65X - Prototype 4-F_Cu (SMD).gbr │ │ ├── Sentinel 65X - Prototype 4-F_Mask.gbr │ │ ├── Sentinel 65X - Prototype 4-F_Paste.gbr │ │ ├── Sentinel 65X - Prototype 4-F_Silkscreen.gbr │ │ ├── Sentinel 65X - Prototype 4-In1_Cu (GND).gbr │ │ ├── Sentinel 65X - Prototype 4-In2_Cu (N-S).gbr │ │ ├── Sentinel 65X - Prototype 4-In3_Cu_ (E-W).gbr │ │ ├── Sentinel 65X - Prototype 4-In4_Cu (GND).gbr │ │ ├── Sentinel 65X - Prototype 4-NPTH.drl │ │ ├── Sentinel 65X - Prototype 4-PTH.drl │ │ └── Sentinel 65X - Prototype 4-job.gbrjob ├── Sentinel 65X Expansion Backplane │ ├── Sentinel 65X Expansion Backplane-backups │ │ ├── Sentinel 65X Expansion Backplane-2024-02-26_213930.zip │ │ ├── Sentinel 65X Expansion Backplane-2024-02-26_214946.zip │ │ ├── Sentinel 65X Expansion Backplane-2024-02-26_215623.zip │ │ ├── Sentinel 65X Expansion Backplane-2024-02-26_220323.zip │ │ └── Sentinel 65X Expansion Backplane-2024-02-26_221329.zip │ ├── Sentinel 65X Expansion Backplane.kicad_pcb │ ├── Sentinel 65X Expansion Backplane.kicad_prl │ ├── Sentinel 65X Expansion Backplane.kicad_pro │ └── Sentinel 65X Expansion Backplane.kicad_sch └── Sentinel 65X Keyboard - V01 │ ├── Sentinel 65X Keyboard - V01.kicad_pcb │ ├── Sentinel 65X Keyboard - V01.kicad_prl │ ├── Sentinel 65X Keyboard - V01.kicad_pro │ ├── Sentinel 65X Keyboard - V01.kicad_sch │ ├── fp-info-cache │ └── production │ └── .DS_Store └── license.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/Images/.DS_Store -------------------------------------------------------------------------------- /Images/Canada_wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/Images/Canada_wordmark.png -------------------------------------------------------------------------------- /Images/Open-source-hardware-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/Images/Open-source-hardware-logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/README.md -------------------------------------------------------------------------------- /doc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/.DS_Store -------------------------------------------------------------------------------- /doc/application notes/AN551.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/application notes/AN551.pdf -------------------------------------------------------------------------------- /doc/datasheets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/datasheets/.DS_Store -------------------------------------------------------------------------------- /doc/datasheets/Si5351_B-2507774.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/datasheets/Si5351_B-2507774.pdf -------------------------------------------------------------------------------- /doc/datasheets/W65C265S Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/datasheets/W65C265S Datasheet.pdf -------------------------------------------------------------------------------- /doc/datasheets/W65C816S Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/datasheets/W65C816S Datasheet.pdf -------------------------------------------------------------------------------- /doc/manuals/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/manuals/.DS_Store -------------------------------------------------------------------------------- /doc/manuals/W65C265S Monitor ROM Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/doc/manuals/W65C265S Monitor ROM Manual.pdf -------------------------------------------------------------------------------- /firmware/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/Makefile -------------------------------------------------------------------------------- /firmware/kernel/config/config.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firmware/kernel/config/memory.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/config/memory.scm -------------------------------------------------------------------------------- /firmware/kernel/config/sdk-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/config/sdk-config.mk -------------------------------------------------------------------------------- /firmware/kernel/config/sdk-targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/config/sdk-targets.mk -------------------------------------------------------------------------------- /firmware/kernel/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/config.h -------------------------------------------------------------------------------- /firmware/kernel/include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/device.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/fatfs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/fatfs/LICENSE.txt -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/fatfs/diskio.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/fatfs/ff.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/fatfs/ffconf.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/null.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/random.h -------------------------------------------------------------------------------- /firmware/kernel/include/drivers/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/drivers/spi.h -------------------------------------------------------------------------------- /firmware/kernel/include/fcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/fcb.h -------------------------------------------------------------------------------- /firmware/kernel/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/include/unistd.h -------------------------------------------------------------------------------- /firmware/kernel/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/src/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/device.c -------------------------------------------------------------------------------- /firmware/kernel/src/device.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/device.o -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/.DS_Store -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/fatfs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/fatfs/LICENSE.txt -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/fatfs/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/fatfs/diskio.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/fatfs/ff.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/fatfs/ffsystem.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/fatfs/ffunicode.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/null.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/random.c -------------------------------------------------------------------------------- /firmware/kernel/src/drivers/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/drivers/spi.c -------------------------------------------------------------------------------- /firmware/kernel/src/fcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/fcb.c -------------------------------------------------------------------------------- /firmware/kernel/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/firmware/kernel/src/main.c -------------------------------------------------------------------------------- /glue logic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/glue logic/.DS_Store -------------------------------------------------------------------------------- /glue logic/glue_logic.pld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/glue logic/glue_logic.pld -------------------------------------------------------------------------------- /kicad/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/.DS_Store -------------------------------------------------------------------------------- /kicad/AV Boards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/.DS_Store -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_041605.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_041605.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_042610.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_042610.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_044422.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_044422.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_050508.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_050508.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_151923.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_151923.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_162410.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board-backups/SVGA & RCA Audio AV Board-2024-03-12_162410.zip -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.bak -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_pcb -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_prl -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_pro -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_sch -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.kicad_sym -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.pretty/Kobiconn 156-009X RCA Connector.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/SVGA & RCA Audio AV Board.pretty/Kobiconn 156-009X RCA Connector.kicad_mod -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/fp-info-cache -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/fp-lib-table -------------------------------------------------------------------------------- /kicad/AV Boards/SVGA & RCA Audio AV Board/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/AV Boards/SVGA & RCA Audio AV Board/sym-lib-table -------------------------------------------------------------------------------- /kicad/Cartridges/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/.DS_Store -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_pcb -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_prl -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_pro -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/Sentinel 65X - 1024KB ROM Cartridge.kicad_sch -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 1024KB ROM Cartridge/fp-info-cache -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pcb -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_prl -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_pro -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/Sentinel 65X - 512KB RAM & ROM Cartridge.kicad_sch -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB RAM & ROM Cartridge/fp-info-cache -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_pcb -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_prl -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_pro -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/Sentinel 65X - 512KB ROM Cartridge.kicad_sch -------------------------------------------------------------------------------- /kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Cartridges/Sentinel 65X - 512KB ROM Cartridge/fp-info-cache -------------------------------------------------------------------------------- /kicad/IO Boards/Basic IO Board/Basic IO Board-backups/Basic IO Board-2024-03-12_182700.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/IO Boards/Basic IO Board/Basic IO Board-backups/Basic IO Board-2024-03-12_182700.zip -------------------------------------------------------------------------------- /kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_pcb -------------------------------------------------------------------------------- /kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_prl -------------------------------------------------------------------------------- /kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_pro -------------------------------------------------------------------------------- /kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/IO Boards/Basic IO Board/Basic IO Board.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-B_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-Edge_Cuts.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-F_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-In1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-In1_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-In2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-In2_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-NPTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-PTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Gerbers/Sentinel 65X - Prototype 3 Mini-job.gbrjob -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Open-source-hardware-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Open-source-hardware-logo.svg -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.chp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.chp -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.fus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.fus -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.jed -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.pin -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.pld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini.pld -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini2.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/PLD/Sentinel 65X - Prototype 3 Mini2.jed -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-01_223152.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-01_223152.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-06_174301.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-06_174301.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-15_214558.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-15_214558.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-15_224640.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-15_224640.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-16_192945.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini-backups/Sentinel 65X - Prototype 3 Mini-2024-03-16_192945.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Sentinel 65X - Prototype 3 Mini.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-B_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-Edge_Cuts.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-F_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-In1_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-In1_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-In2_Cu.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-In2_Cu.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-NPTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-PTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Gerbers/Untitled-job.gbrjob -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Open-source-hardware-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Open-source-hardware-logo.svg -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/Untitled.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/bom/ibom.html -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/Untitled/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/Untitled/fp-info-cache -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/bom/ibom.html -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 3 Mini/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 3 Mini/fp-info-cache -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/AV Port.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/AV Port.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/CPU.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/CPU.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Cartridge Port.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Cartridge Port.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Expansion Ports.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Expansion Ports.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Glue Logic.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Glue Logic.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/IO Port.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/IO Port.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/On-Board Memory.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/On-Board Memory.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Power Supply.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Power Supply.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_224206.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_224206.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_234817.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_234817.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_235846.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-10_235846.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_225627.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_225627.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_231858.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_231858.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_233412.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_233412.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_234037.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_234037.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_234752.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-11_234752.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_231658.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_231658.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_232228.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_232228.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_232756.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_232756.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_233409.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_233409.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_234202.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-12_234202.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_174506.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_174506.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_184513.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_184513.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_185015.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_185015.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_185516.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_185516.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_192141.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-13_192141.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_224248.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_224248.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_224841.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_224841.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_225424.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_225424.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_233043.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_233043.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_235925.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-14_235925.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-15_203554.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-15_203554.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-16_193046.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-16_193046.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-17_113425.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2-backups/Sentinel 65X - Prototype 4 V2-2024-03-17_113425.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.bak -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.kicad_sym -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pdf -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/PMEG3005AESFYL.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/PMEG3005AESFYL.kicad_mod -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/SESD8008MUTAG.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/SESD8008MUTAG.kicad_mod -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/SON50P160X400X65-17N.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/SON50P160X400X65-17N.kicad_mod -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/Sentinel 65X Cartridge Port.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/Sentinel 65X Cartridge Port.kicad_mod -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/Sentinel 65X Expansion Port.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/Sentinel 65X - Prototype 4 V2.pretty/Sentinel 65X Expansion Port.kicad_mod -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/System Memory.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/System Memory.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/USB-Serial Bridge.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/USB-Serial Bridge.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/VERA.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/VERA.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/W65C265S CPU.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/W65C265S CPU.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/fp-info-cache -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/fp-lib-table -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4 V2/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4 V2/sym-lib-table -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_002030.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_002030.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_202434.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_202434.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_225729.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-26_225729.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-27_144331.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-27_144331.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-29_155318.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-29_155318.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-29_214034.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-02-29_214034.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-01_232208.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-01_232208.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-04_224259.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-04_224259.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_213414.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_213414.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_214254.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_214254.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_215426.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_215426.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_221749.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_221749.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_222449.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-06_222449.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_034037.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_034037.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_162414.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_162414.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_183012.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_183012.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_194530.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4-backups/Sentinel 65X - Prototype 4-2024-03-12_194530.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/Sentinel 65X - Prototype 4.pdf -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/fp-info-cache -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/.DS_Store -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Cu (MISC).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Cu (MISC).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-B_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-Edge_Cuts.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Cu (SMD).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Cu (SMD).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Mask.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Mask.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Paste.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Silkscreen.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-F_Silkscreen.gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In1_Cu (GND).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In1_Cu (GND).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In2_Cu (N-S).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In2_Cu (N-S).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In3_Cu_ (E-W).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In3_Cu_ (E-W).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In4_Cu (GND).gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-In4_Cu (GND).gbr -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-NPTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-PTH.drl -------------------------------------------------------------------------------- /kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X - Prototype 4/production/Sentinel 65X - Prototype 4-job.gbrjob -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_213930.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_213930.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_214946.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_214946.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_215623.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_215623.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_220323.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_220323.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_221329.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane-backups/Sentinel 65X Expansion Backplane-2024-02-26_221329.zip -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Expansion Backplane/Sentinel 65X Expansion Backplane.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_pcb -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_prl -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_pro -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/Sentinel 65X Keyboard - V01.kicad_sch -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/fp-info-cache -------------------------------------------------------------------------------- /kicad/Sentinel 65X Keyboard - V01/production/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/kicad/Sentinel 65X Keyboard - V01/production/.DS_Store -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studio8502/Sentinel-65X/HEAD/license.txt --------------------------------------------------------------------------------