├── .gitattributes ├── .gitignore ├── AppleIISd.sln ├── Binary ├── AppleCommander-ac-1.5.0.jar ├── AppleIISd.bin ├── AppleIISd.bom.txt ├── AppleIISd.hex ├── AppleIISd.pdf ├── AppleIISd_PC44.jed ├── AppleIISd_VQ44.jed ├── Flasher.bin ├── Flasher.dsk ├── Gerber_V1.1.zip ├── Gerber_V1.2.1.zip ├── Gerber_V1.2.zip └── ProFile.zip ├── Datasheets ├── 104H-TDA0-R.pdf ├── 65SPI-B Datasheet V1.1.docx ├── 65SPI-B Datasheet V1.1.pdf ├── 74LS245.pdf ├── AT28C64.pdf ├── AT28C64B.pdf ├── AppleII_Timing.json ├── AppleII_Timing.png ├── EEPROM_Timing.json ├── EEPROM_Timing.png ├── LM1117.pdf ├── M2716.pdf ├── M2732A.pdf ├── M48Z12.pdf ├── SD Specification - Part 1 Physical Layer Simplified.pdf ├── Timings.pptx ├── Xilinx DS054.pdf ├── Xilinx DS057.pdf ├── Xilinx XAPP112.pdf ├── at28c16.pdf └── plcc44_bottom.jpg ├── Firmware ├── AppleIISd.vcxproj ├── AppleIISd.vcxproj.filters ├── make_image.bat ├── make_image.sh ├── makefile └── src │ ├── AppleIISd.cfg │ ├── AppleIISd.inc │ ├── AppleIISd.s │ ├── Helper.s │ ├── ProDOS.s │ └── Smartport.s ├── Hardware ├── PCB-POOL Standard.dru ├── SD_A2.brd ├── SD_A2.gpi ├── SD_A2.sch ├── TagConnect.lbr ├── con-apple2.lbr ├── con-sd-attend2.lbr ├── lm1117.lbr ├── pda.lbr └── xilinx-xc9.lbr ├── Images ├── AddessDecoder_Test.JPG ├── AppleIISd_Test.JPG ├── Bus1.gif ├── Bus2.gif ├── Card Front SMD.jpg ├── Card Front.jpg ├── Spi1.png └── Spi2.png ├── README.md ├── Software ├── Flasher.vcxproj ├── Flasher.vcxproj.filters ├── apple2enh-system.cfg ├── make_image.bat ├── make_image.sh ├── makefile └── src │ ├── AppleIISd.h │ └── Flasher.c └── VHDL ├── AddressDecoder.vhd ├── AddressDecoder_Test.vhd ├── AppleIISd.vhd ├── AppleIISd_PC44.ucf ├── AppleIISd_PC44.xise ├── AppleIISd_Test.vhd ├── AppleIISd_VQ44.ucf ├── AppleIISd_VQ44.xise └── SpiController.vhd /.gitattributes: -------------------------------------------------------------------------------- 1 | Hardware/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/.gitignore -------------------------------------------------------------------------------- /AppleIISd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/AppleIISd.sln -------------------------------------------------------------------------------- /Binary/AppleCommander-ac-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleCommander-ac-1.5.0.jar -------------------------------------------------------------------------------- /Binary/AppleIISd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd.bin -------------------------------------------------------------------------------- /Binary/AppleIISd.bom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd.bom.txt -------------------------------------------------------------------------------- /Binary/AppleIISd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd.hex -------------------------------------------------------------------------------- /Binary/AppleIISd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd.pdf -------------------------------------------------------------------------------- /Binary/AppleIISd_PC44.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd_PC44.jed -------------------------------------------------------------------------------- /Binary/AppleIISd_VQ44.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/AppleIISd_VQ44.jed -------------------------------------------------------------------------------- /Binary/Flasher.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/Flasher.bin -------------------------------------------------------------------------------- /Binary/Flasher.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/Flasher.dsk -------------------------------------------------------------------------------- /Binary/Gerber_V1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/Gerber_V1.1.zip -------------------------------------------------------------------------------- /Binary/Gerber_V1.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/Gerber_V1.2.1.zip -------------------------------------------------------------------------------- /Binary/Gerber_V1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/Gerber_V1.2.zip -------------------------------------------------------------------------------- /Binary/ProFile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Binary/ProFile.zip -------------------------------------------------------------------------------- /Datasheets/104H-TDA0-R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/104H-TDA0-R.pdf -------------------------------------------------------------------------------- /Datasheets/65SPI-B Datasheet V1.1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/65SPI-B Datasheet V1.1.docx -------------------------------------------------------------------------------- /Datasheets/65SPI-B Datasheet V1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/65SPI-B Datasheet V1.1.pdf -------------------------------------------------------------------------------- /Datasheets/74LS245.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/74LS245.pdf -------------------------------------------------------------------------------- /Datasheets/AT28C64.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/AT28C64.pdf -------------------------------------------------------------------------------- /Datasheets/AT28C64B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/AT28C64B.pdf -------------------------------------------------------------------------------- /Datasheets/AppleII_Timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/AppleII_Timing.json -------------------------------------------------------------------------------- /Datasheets/AppleII_Timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/AppleII_Timing.png -------------------------------------------------------------------------------- /Datasheets/EEPROM_Timing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/EEPROM_Timing.json -------------------------------------------------------------------------------- /Datasheets/EEPROM_Timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/EEPROM_Timing.png -------------------------------------------------------------------------------- /Datasheets/LM1117.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/LM1117.pdf -------------------------------------------------------------------------------- /Datasheets/M2716.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/M2716.pdf -------------------------------------------------------------------------------- /Datasheets/M2732A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/M2732A.pdf -------------------------------------------------------------------------------- /Datasheets/M48Z12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/M48Z12.pdf -------------------------------------------------------------------------------- /Datasheets/SD Specification - Part 1 Physical Layer Simplified.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/SD Specification - Part 1 Physical Layer Simplified.pdf -------------------------------------------------------------------------------- /Datasheets/Timings.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/Timings.pptx -------------------------------------------------------------------------------- /Datasheets/Xilinx DS054.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/Xilinx DS054.pdf -------------------------------------------------------------------------------- /Datasheets/Xilinx DS057.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/Xilinx DS057.pdf -------------------------------------------------------------------------------- /Datasheets/Xilinx XAPP112.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/Xilinx XAPP112.pdf -------------------------------------------------------------------------------- /Datasheets/at28c16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/at28c16.pdf -------------------------------------------------------------------------------- /Datasheets/plcc44_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Datasheets/plcc44_bottom.jpg -------------------------------------------------------------------------------- /Firmware/AppleIISd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/AppleIISd.vcxproj -------------------------------------------------------------------------------- /Firmware/AppleIISd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/AppleIISd.vcxproj.filters -------------------------------------------------------------------------------- /Firmware/make_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/make_image.bat -------------------------------------------------------------------------------- /Firmware/make_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/make_image.sh -------------------------------------------------------------------------------- /Firmware/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/makefile -------------------------------------------------------------------------------- /Firmware/src/AppleIISd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/AppleIISd.cfg -------------------------------------------------------------------------------- /Firmware/src/AppleIISd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/AppleIISd.inc -------------------------------------------------------------------------------- /Firmware/src/AppleIISd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/AppleIISd.s -------------------------------------------------------------------------------- /Firmware/src/Helper.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/Helper.s -------------------------------------------------------------------------------- /Firmware/src/ProDOS.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/ProDOS.s -------------------------------------------------------------------------------- /Firmware/src/Smartport.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Firmware/src/Smartport.s -------------------------------------------------------------------------------- /Hardware/PCB-POOL Standard.dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/PCB-POOL Standard.dru -------------------------------------------------------------------------------- /Hardware/SD_A2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/SD_A2.brd -------------------------------------------------------------------------------- /Hardware/SD_A2.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/SD_A2.gpi -------------------------------------------------------------------------------- /Hardware/SD_A2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/SD_A2.sch -------------------------------------------------------------------------------- /Hardware/TagConnect.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/TagConnect.lbr -------------------------------------------------------------------------------- /Hardware/con-apple2.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/con-apple2.lbr -------------------------------------------------------------------------------- /Hardware/con-sd-attend2.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/con-sd-attend2.lbr -------------------------------------------------------------------------------- /Hardware/lm1117.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/lm1117.lbr -------------------------------------------------------------------------------- /Hardware/pda.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/pda.lbr -------------------------------------------------------------------------------- /Hardware/xilinx-xc9.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Hardware/xilinx-xc9.lbr -------------------------------------------------------------------------------- /Images/AddessDecoder_Test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/AddessDecoder_Test.JPG -------------------------------------------------------------------------------- /Images/AppleIISd_Test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/AppleIISd_Test.JPG -------------------------------------------------------------------------------- /Images/Bus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Bus1.gif -------------------------------------------------------------------------------- /Images/Bus2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Bus2.gif -------------------------------------------------------------------------------- /Images/Card Front SMD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Card Front SMD.jpg -------------------------------------------------------------------------------- /Images/Card Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Card Front.jpg -------------------------------------------------------------------------------- /Images/Spi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Spi1.png -------------------------------------------------------------------------------- /Images/Spi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Images/Spi2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/README.md -------------------------------------------------------------------------------- /Software/Flasher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/Flasher.vcxproj -------------------------------------------------------------------------------- /Software/Flasher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/Flasher.vcxproj.filters -------------------------------------------------------------------------------- /Software/apple2enh-system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/apple2enh-system.cfg -------------------------------------------------------------------------------- /Software/make_image.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/make_image.bat -------------------------------------------------------------------------------- /Software/make_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/make_image.sh -------------------------------------------------------------------------------- /Software/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/makefile -------------------------------------------------------------------------------- /Software/src/AppleIISd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/src/AppleIISd.h -------------------------------------------------------------------------------- /Software/src/Flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/Software/src/Flasher.c -------------------------------------------------------------------------------- /VHDL/AddressDecoder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AddressDecoder.vhd -------------------------------------------------------------------------------- /VHDL/AddressDecoder_Test.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AddressDecoder_Test.vhd -------------------------------------------------------------------------------- /VHDL/AppleIISd.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd.vhd -------------------------------------------------------------------------------- /VHDL/AppleIISd_PC44.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd_PC44.ucf -------------------------------------------------------------------------------- /VHDL/AppleIISd_PC44.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd_PC44.xise -------------------------------------------------------------------------------- /VHDL/AppleIISd_Test.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd_Test.vhd -------------------------------------------------------------------------------- /VHDL/AppleIISd_VQ44.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd_VQ44.ucf -------------------------------------------------------------------------------- /VHDL/AppleIISd_VQ44.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/AppleIISd_VQ44.xise -------------------------------------------------------------------------------- /VHDL/SpiController.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freitz85/AppleIISd/HEAD/VHDL/SpiController.vhd --------------------------------------------------------------------------------