├── .gitattributes ├── .gitignore ├── README.md ├── box ├── bot.stl └── top.stl ├── docs ├── Orig_SDrive_cz.pdf ├── Orig_SDrive_en.pdf ├── Orig_SDrive_siocommands.pdf ├── SDriveARM_Board.pdf ├── SDriveARM_Board.png ├── SDriveARM_PartList.txt ├── SDriveARM_Scheme.pdf └── photos │ ├── build01.jpg │ ├── build02.jpg │ ├── build03.jpg │ ├── build04.jpg │ ├── build05.jpg │ ├── build06.jpg │ ├── build07.jpg │ ├── build07s.jpg │ ├── onplace01.jpg │ ├── onplace02.jpg │ ├── onplace03.jpg │ ├── onplace04.jpg │ ├── onplace05.jpg │ ├── view01.jpg │ ├── view02.jpg │ ├── view03.jpg │ └── view04.jpg ├── hardware ├── SDriveARM.brd ├── SDriveARM.sch └── gerber │ ├── SDriveARM.GBL │ ├── SDriveARM.GBO │ ├── SDriveARM.GBP │ ├── SDriveARM.GBS │ ├── SDriveARM.GML │ ├── SDriveARM.GTL │ ├── SDriveARM.GTO │ ├── SDriveARM.GTP │ ├── SDriveARM.GTS │ └── SDriveARM.TXT ├── sd ├── !Favorites │ ├── BlueMax.xex │ ├── BoulderDash.xex │ ├── BoulderDash2.xex │ ├── BoulderDash3.xex │ ├── DonkeyKong.xex │ ├── Dropzone.xex │ ├── Flight Simulator II v1.05 (1984)(SubLogic).atr │ ├── FortApocalypse.xex │ ├── Henry's House.xex │ ├── InternationalKarateChampionship.xex │ ├── MontezumasRevenge.xex │ ├── PreliminaryMonty.xex │ ├── River Raid (1983)(Activision)[t +3 AHT].xex │ ├── Sea Dragon vC2.1 (1982)(Adventure International).xex │ ├── SeaDragon.xex │ ├── Seawolf2.xex │ ├── Zorro.xex │ └── Zybex.xex ├── EDisk01.atr ├── Games │ ├── BoulderDash.xex │ └── PMonty.xex ├── SDRIVE.ATR └── SDRIVE.CFG ├── soft ├── src │ ├── HWContext.cpp │ ├── HWContext.h │ ├── Launcher.h │ ├── Launcher_PVT.h │ ├── SBOOT.A65 │ ├── SDAccess.cpp │ ├── SDAccess.h │ ├── SDrive.c │ ├── atari.h │ ├── atari │ │ ├── ASM.BAT │ │ ├── MANUAL.A65 │ │ ├── SDRIVE.A65 │ │ ├── SDRIVE.ATR │ │ ├── SDRIVE.CFG │ │ ├── SDRIVE.XEX │ │ ├── SDRIVEN.XEX │ │ ├── SDRIVENH.XEX │ │ ├── SDRIVENH_PACKED.COM │ │ ├── SDRIVEN_PACKED.COM │ │ ├── SDRIVE_PACKED.COM │ │ ├── VERSION.A65 │ │ └── xasm.exe │ ├── dprint.c │ ├── dprint.h │ ├── fat.c │ ├── fat.h │ ├── main.c │ ├── mmcsd.cpp │ └── mmcsd.h └── target │ └── CyPSoC4 │ ├── SDLauncher.cydsn │ ├── .gitignore │ ├── GenerateSyms.cmd │ ├── SDLauncher.cycdx │ ├── SDLauncher.cydwr │ ├── SDLauncher.cyprj │ ├── TopDesign │ │ └── TopDesign.cysch │ ├── cscript │ ├── cyapicallbacks.h │ ├── gensyms.vbs │ ├── launcher.ld │ ├── main.c │ ├── prebuilt │ │ ├── v01 │ │ │ ├── SDLauncher.elf │ │ │ ├── SDLauncher.hex │ │ │ └── SDLauncher.sym │ │ └── v02 │ │ │ ├── SDLauncher.elf │ │ │ ├── SDLauncher.hex │ │ │ └── SDLauncher.sym │ └── reqsyms.in │ └── SDriveARM_PSoC4.cydsn │ ├── .gitignore │ ├── MakeDebugUpd.cmd │ ├── MakeReleaseUpd.cmd │ ├── SDriveARM_1.ld │ ├── SDriveARM_PSoC4-000.cywrk │ ├── SDriveARM_PSoC4.cycdx │ ├── SDriveARM_PSoC4.cydwr │ ├── SDriveARM_PSoC4.cyprj │ ├── TopDesign │ └── TopDesign.cysch │ └── cyapicallbacks.h ├── update ├── README.md └── v3 │ ├── bl_v01 │ ├── !SDRIVE.UPD │ └── SDRIVE.UPD │ └── bl_v02 │ └── SDRIVE.UPD └── versions ├── v01bl01 ├── SDriveARM_PSoC4.bin └── SDriveARM_PSoC4.hex ├── v02bl02 ├── SDriveARM_PSoC4.bin └── SDriveARM_PSoC4.hex ├── v03bl01 ├── SDriveARM_PSoC4.bin └── SDriveARM_PSoC4.hex └── v03bl02 ├── SDriveARM_PSoC4.bin └── SDriveARM_PSoC4.hex /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/README.md -------------------------------------------------------------------------------- /box/bot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/box/bot.stl -------------------------------------------------------------------------------- /box/top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/box/top.stl -------------------------------------------------------------------------------- /docs/Orig_SDrive_cz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/Orig_SDrive_cz.pdf -------------------------------------------------------------------------------- /docs/Orig_SDrive_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/Orig_SDrive_en.pdf -------------------------------------------------------------------------------- /docs/Orig_SDrive_siocommands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/Orig_SDrive_siocommands.pdf -------------------------------------------------------------------------------- /docs/SDriveARM_Board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/SDriveARM_Board.pdf -------------------------------------------------------------------------------- /docs/SDriveARM_Board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/SDriveARM_Board.png -------------------------------------------------------------------------------- /docs/SDriveARM_PartList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/SDriveARM_PartList.txt -------------------------------------------------------------------------------- /docs/SDriveARM_Scheme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/SDriveARM_Scheme.pdf -------------------------------------------------------------------------------- /docs/photos/build01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build01.jpg -------------------------------------------------------------------------------- /docs/photos/build02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build02.jpg -------------------------------------------------------------------------------- /docs/photos/build03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build03.jpg -------------------------------------------------------------------------------- /docs/photos/build04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build04.jpg -------------------------------------------------------------------------------- /docs/photos/build05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build05.jpg -------------------------------------------------------------------------------- /docs/photos/build06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build06.jpg -------------------------------------------------------------------------------- /docs/photos/build07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build07.jpg -------------------------------------------------------------------------------- /docs/photos/build07s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/build07s.jpg -------------------------------------------------------------------------------- /docs/photos/onplace01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/onplace01.jpg -------------------------------------------------------------------------------- /docs/photos/onplace02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/onplace02.jpg -------------------------------------------------------------------------------- /docs/photos/onplace03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/onplace03.jpg -------------------------------------------------------------------------------- /docs/photos/onplace04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/onplace04.jpg -------------------------------------------------------------------------------- /docs/photos/onplace05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/onplace05.jpg -------------------------------------------------------------------------------- /docs/photos/view01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/view01.jpg -------------------------------------------------------------------------------- /docs/photos/view02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/view02.jpg -------------------------------------------------------------------------------- /docs/photos/view03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/view03.jpg -------------------------------------------------------------------------------- /docs/photos/view04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/docs/photos/view04.jpg -------------------------------------------------------------------------------- /hardware/SDriveARM.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/SDriveARM.brd -------------------------------------------------------------------------------- /hardware/SDriveARM.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/SDriveARM.sch -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GBL -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GBO -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GBP -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GBS -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GML -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GTL -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GTO -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GTP -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.GTS -------------------------------------------------------------------------------- /hardware/gerber/SDriveARM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/hardware/gerber/SDriveARM.TXT -------------------------------------------------------------------------------- /sd/!Favorites/BlueMax.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/BlueMax.xex -------------------------------------------------------------------------------- /sd/!Favorites/BoulderDash.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/BoulderDash.xex -------------------------------------------------------------------------------- /sd/!Favorites/BoulderDash2.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/BoulderDash2.xex -------------------------------------------------------------------------------- /sd/!Favorites/BoulderDash3.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/BoulderDash3.xex -------------------------------------------------------------------------------- /sd/!Favorites/DonkeyKong.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/DonkeyKong.xex -------------------------------------------------------------------------------- /sd/!Favorites/Dropzone.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Dropzone.xex -------------------------------------------------------------------------------- /sd/!Favorites/Flight Simulator II v1.05 (1984)(SubLogic).atr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Flight Simulator II v1.05 (1984)(SubLogic).atr -------------------------------------------------------------------------------- /sd/!Favorites/FortApocalypse.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/FortApocalypse.xex -------------------------------------------------------------------------------- /sd/!Favorites/Henry's House.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Henry's House.xex -------------------------------------------------------------------------------- /sd/!Favorites/InternationalKarateChampionship.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/InternationalKarateChampionship.xex -------------------------------------------------------------------------------- /sd/!Favorites/MontezumasRevenge.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/MontezumasRevenge.xex -------------------------------------------------------------------------------- /sd/!Favorites/PreliminaryMonty.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/PreliminaryMonty.xex -------------------------------------------------------------------------------- /sd/!Favorites/River Raid (1983)(Activision)[t +3 AHT].xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/River Raid (1983)(Activision)[t +3 AHT].xex -------------------------------------------------------------------------------- /sd/!Favorites/Sea Dragon vC2.1 (1982)(Adventure International).xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Sea Dragon vC2.1 (1982)(Adventure International).xex -------------------------------------------------------------------------------- /sd/!Favorites/SeaDragon.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/SeaDragon.xex -------------------------------------------------------------------------------- /sd/!Favorites/Seawolf2.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Seawolf2.xex -------------------------------------------------------------------------------- /sd/!Favorites/Zorro.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Zorro.xex -------------------------------------------------------------------------------- /sd/!Favorites/Zybex.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/!Favorites/Zybex.xex -------------------------------------------------------------------------------- /sd/EDisk01.atr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/EDisk01.atr -------------------------------------------------------------------------------- /sd/Games/BoulderDash.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/Games/BoulderDash.xex -------------------------------------------------------------------------------- /sd/Games/PMonty.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/Games/PMonty.xex -------------------------------------------------------------------------------- /sd/SDRIVE.ATR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/SDRIVE.ATR -------------------------------------------------------------------------------- /sd/SDRIVE.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/sd/SDRIVE.CFG -------------------------------------------------------------------------------- /soft/src/HWContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/HWContext.cpp -------------------------------------------------------------------------------- /soft/src/HWContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/HWContext.h -------------------------------------------------------------------------------- /soft/src/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/Launcher.h -------------------------------------------------------------------------------- /soft/src/Launcher_PVT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/Launcher_PVT.h -------------------------------------------------------------------------------- /soft/src/SBOOT.A65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/SBOOT.A65 -------------------------------------------------------------------------------- /soft/src/SDAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/SDAccess.cpp -------------------------------------------------------------------------------- /soft/src/SDAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/SDAccess.h -------------------------------------------------------------------------------- /soft/src/SDrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/SDrive.c -------------------------------------------------------------------------------- /soft/src/atari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari.h -------------------------------------------------------------------------------- /soft/src/atari/ASM.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/ASM.BAT -------------------------------------------------------------------------------- /soft/src/atari/MANUAL.A65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/MANUAL.A65 -------------------------------------------------------------------------------- /soft/src/atari/SDRIVE.A65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVE.A65 -------------------------------------------------------------------------------- /soft/src/atari/SDRIVE.ATR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVE.ATR -------------------------------------------------------------------------------- /soft/src/atari/SDRIVE.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVE.CFG -------------------------------------------------------------------------------- /soft/src/atari/SDRIVE.XEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVE.XEX -------------------------------------------------------------------------------- /soft/src/atari/SDRIVEN.XEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVEN.XEX -------------------------------------------------------------------------------- /soft/src/atari/SDRIVENH.XEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVENH.XEX -------------------------------------------------------------------------------- /soft/src/atari/SDRIVENH_PACKED.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVENH_PACKED.COM -------------------------------------------------------------------------------- /soft/src/atari/SDRIVEN_PACKED.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVEN_PACKED.COM -------------------------------------------------------------------------------- /soft/src/atari/SDRIVE_PACKED.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/SDRIVE_PACKED.COM -------------------------------------------------------------------------------- /soft/src/atari/VERSION.A65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/VERSION.A65 -------------------------------------------------------------------------------- /soft/src/atari/xasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/atari/xasm.exe -------------------------------------------------------------------------------- /soft/src/dprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/dprint.c -------------------------------------------------------------------------------- /soft/src/dprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/dprint.h -------------------------------------------------------------------------------- /soft/src/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/fat.c -------------------------------------------------------------------------------- /soft/src/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/fat.h -------------------------------------------------------------------------------- /soft/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/main.c -------------------------------------------------------------------------------- /soft/src/mmcsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/mmcsd.cpp -------------------------------------------------------------------------------- /soft/src/mmcsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/src/mmcsd.h -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/.gitignore -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/GenerateSyms.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/GenerateSyms.cmd -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cycdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cycdx -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cydwr -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/SDLauncher.cyprj -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/cscript: -------------------------------------------------------------------------------- 1 | test gensyms.vbs 2 | -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/gensyms.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/gensyms.vbs -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/launcher.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/launcher.ld -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/main.c -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.elf -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.hex -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v01/SDLauncher.sym -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.elf -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.hex -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/prebuilt/v02/SDLauncher.sym -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDLauncher.cydsn/reqsyms.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDLauncher.cydsn/reqsyms.in -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/.gitignore -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/MakeDebugUpd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/MakeDebugUpd.cmd -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/MakeReleaseUpd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/MakeReleaseUpd.cmd -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_1.ld -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4-000.cywrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4-000.cywrk -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cycdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cycdx -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cydwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cydwr -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cyprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/SDriveARM_PSoC4.cyprj -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/TopDesign/TopDesign.cysch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/TopDesign/TopDesign.cysch -------------------------------------------------------------------------------- /soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/cyapicallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/soft/target/CyPSoC4/SDriveARM_PSoC4.cydsn/cyapicallbacks.h -------------------------------------------------------------------------------- /update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/update/README.md -------------------------------------------------------------------------------- /update/v3/bl_v01/!SDRIVE.UPD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/update/v3/bl_v01/!SDRIVE.UPD -------------------------------------------------------------------------------- /update/v3/bl_v01/SDRIVE.UPD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/update/v3/bl_v01/SDRIVE.UPD -------------------------------------------------------------------------------- /update/v3/bl_v02/SDRIVE.UPD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/update/v3/bl_v02/SDRIVE.UPD -------------------------------------------------------------------------------- /versions/v01bl01/SDriveARM_PSoC4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v01bl01/SDriveARM_PSoC4.bin -------------------------------------------------------------------------------- /versions/v01bl01/SDriveARM_PSoC4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v01bl01/SDriveARM_PSoC4.hex -------------------------------------------------------------------------------- /versions/v02bl02/SDriveARM_PSoC4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v02bl02/SDriveARM_PSoC4.bin -------------------------------------------------------------------------------- /versions/v02bl02/SDriveARM_PSoC4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v02bl02/SDriveARM_PSoC4.hex -------------------------------------------------------------------------------- /versions/v03bl01/SDriveARM_PSoC4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v03bl01/SDriveARM_PSoC4.bin -------------------------------------------------------------------------------- /versions/v03bl01/SDriveARM_PSoC4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v03bl01/SDriveARM_PSoC4.hex -------------------------------------------------------------------------------- /versions/v03bl02/SDriveARM_PSoC4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v03bl02/SDriveARM_PSoC4.bin -------------------------------------------------------------------------------- /versions/v03bl02/SDriveARM_PSoC4.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fintros/SDrive-ARM/HEAD/versions/v03bl02/SDriveARM_PSoC4.hex --------------------------------------------------------------------------------