├── .gitignore ├── CMakeLists.txt ├── README.md ├── emu.c ├── emu.h ├── emucheckcards.c ├── emucmd.h ├── emuerror.h ├── emuinit.c ├── emuinit.h ├── emurtc.c ├── emurtc.h ├── emuscsi.c ├── emuscsi.h ├── emusdcard.c ├── hardware ├── ATARI_ACSI_HDC_EMULATOR_rev1.pdf ├── ATARI_ACSI_HDC_EMULATOR_rev2.pdf └── Atari_ST_HDD_EMULATOR.sch ├── junk.c ├── mountRAW.c ├── sdcard ├── crc.c ├── crc.h ├── hw_config.h ├── sd_card.c ├── sd_card.h ├── sd_spi.c ├── sd_spi.h ├── spi.c └── spi.h ├── shell ├── cpdisk.c ├── cpuclock.c ├── datetime.c ├── debug.c ├── emumount.c ├── emushell.c ├── emushell.h ├── sdtest.c ├── status.c └── uptime.c └── tmp.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/README.md -------------------------------------------------------------------------------- /emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emu.c -------------------------------------------------------------------------------- /emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emu.h -------------------------------------------------------------------------------- /emucheckcards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emucheckcards.c -------------------------------------------------------------------------------- /emucmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emucmd.h -------------------------------------------------------------------------------- /emuerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emuerror.h -------------------------------------------------------------------------------- /emuinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emuinit.c -------------------------------------------------------------------------------- /emuinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emuinit.h -------------------------------------------------------------------------------- /emurtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emurtc.c -------------------------------------------------------------------------------- /emurtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emurtc.h -------------------------------------------------------------------------------- /emuscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emuscsi.c -------------------------------------------------------------------------------- /emuscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emuscsi.h -------------------------------------------------------------------------------- /emusdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/emusdcard.c -------------------------------------------------------------------------------- /hardware/ATARI_ACSI_HDC_EMULATOR_rev1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/hardware/ATARI_ACSI_HDC_EMULATOR_rev1.pdf -------------------------------------------------------------------------------- /hardware/ATARI_ACSI_HDC_EMULATOR_rev2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/hardware/ATARI_ACSI_HDC_EMULATOR_rev2.pdf -------------------------------------------------------------------------------- /hardware/Atari_ST_HDD_EMULATOR.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/hardware/Atari_ST_HDD_EMULATOR.sch -------------------------------------------------------------------------------- /junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/junk.c -------------------------------------------------------------------------------- /mountRAW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/mountRAW.c -------------------------------------------------------------------------------- /sdcard/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/crc.c -------------------------------------------------------------------------------- /sdcard/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/crc.h -------------------------------------------------------------------------------- /sdcard/hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/hw_config.h -------------------------------------------------------------------------------- /sdcard/sd_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/sd_card.c -------------------------------------------------------------------------------- /sdcard/sd_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/sd_card.h -------------------------------------------------------------------------------- /sdcard/sd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/sd_spi.c -------------------------------------------------------------------------------- /sdcard/sd_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/sd_spi.h -------------------------------------------------------------------------------- /sdcard/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/spi.c -------------------------------------------------------------------------------- /sdcard/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/sdcard/spi.h -------------------------------------------------------------------------------- /shell/cpdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/cpdisk.c -------------------------------------------------------------------------------- /shell/cpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/cpuclock.c -------------------------------------------------------------------------------- /shell/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/datetime.c -------------------------------------------------------------------------------- /shell/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/debug.c -------------------------------------------------------------------------------- /shell/emumount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/emumount.c -------------------------------------------------------------------------------- /shell/emushell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/emushell.c -------------------------------------------------------------------------------- /shell/emushell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/emushell.h -------------------------------------------------------------------------------- /shell/sdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/sdtest.c -------------------------------------------------------------------------------- /shell/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/status.c -------------------------------------------------------------------------------- /shell/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/shell/uptime.c -------------------------------------------------------------------------------- /tmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh219/ST_HD_Emulator/HEAD/tmp.txt --------------------------------------------------------------------------------