├── .gitignore ├── Atari800 └── src │ ├── afile.c │ ├── afile.h │ ├── akey.h │ ├── antic.c │ ├── antic.h │ ├── atari.c │ ├── atari.h │ ├── binload.c │ ├── binload.h │ ├── cartridge.c │ ├── cartridge.h │ ├── cassette.c │ ├── cassette.h │ ├── colours.c │ ├── colours.h │ ├── colours_external.c │ ├── colours_external.h │ ├── colours_ntsc.c │ ├── colours_ntsc.h │ ├── colours_pal.c │ ├── colours_pal.h │ ├── compfile.c │ ├── compfile.h │ ├── cpu.c │ ├── cpu.h │ ├── cycle_map.c │ ├── cycle_map.h │ ├── devices.c │ ├── devices.h │ ├── emuos.h │ ├── esc.c │ ├── esc.h │ ├── gtia.c │ ├── gtia.h │ ├── input.c │ ├── input.h │ ├── log.c │ ├── log.h │ ├── memory.c │ ├── memory.h │ ├── monitor.c │ ├── monitor.h │ ├── mzpokeysnd.c │ ├── mzpokeysnd.h │ ├── pbi.c │ ├── pbi.h │ ├── pia.c │ ├── pia.h │ ├── platform.h │ ├── pokey.c │ ├── pokey.h │ ├── pokeysnd.c │ ├── pokeysnd.h │ ├── remez.c │ ├── remez.h │ ├── rtime.c │ ├── rtime.h │ ├── screen.c │ ├── screen.h │ ├── sio.c │ ├── sio.h │ ├── sndsave.c │ ├── sndsave.h │ ├── statesav.c │ ├── statesav.h │ ├── util.c │ └── util.h ├── Build ├── NSIS │ └── Atari800Win.nsi ├── VS2005 │ ├── Atari800WinPLus.sln │ └── Atari800WinPLus.vcproj └── Vs2010 │ ├── Atari800WinPLus.sln │ └── Atari800WinPLus.vcproj ├── Distribution ├── ATARI800WIN.GID ├── ATARI800WIN.HLP ├── Atari800Win.cnt ├── Keyboard │ ├── Default.a8k │ ├── Raster.a8k │ └── Ultima3.a8k ├── Palette │ ├── Default.act │ ├── Gray.act │ ├── Green.act │ ├── Jakub.act │ ├── Real.act │ └── Xformer.act ├── Rom │ ├── ATARIBAS.ROM │ ├── ATARIOSB.ROM │ ├── ATARIXL.ROM │ ├── QMeg 3.rom │ └── QMeg 4.4.rom ├── Trainer │ ├── AlleyCat.a8t │ ├── BlueThunder.a8t │ ├── BoulderDash.a8t │ ├── BruceLee.a8t │ ├── Conan.a8t │ ├── DanStrikesBack.a8t │ ├── DonkeyKong.a8t │ ├── DonkeyKongJunior.a8t │ ├── Draconus.a8t │ ├── Dropzone.a8t │ ├── FortApocalypse.a8t │ ├── Goonies.a8t │ ├── Gyruss.a8t │ ├── HERO.a8t │ ├── JetSetWilly.a8t │ ├── KeystoneKapers.a8t │ ├── Loco.a8t │ ├── MontezumasRevenge.a8t │ ├── MoonPatrol.a8t │ ├── MrRobotAndHisRobotFactory.a8t │ ├── RiverRaid.a8t │ ├── Starquake.a8t │ ├── Zorro.a8t │ └── Zorro_FullVersion.a8t ├── kailleraclient.dll └── readme.txt ├── Help ├── ATARI800WIN.GID ├── ATARI800WIN.HLP ├── Atari800Win.cnt ├── Atari800Win.ha ├── Atari800Win.hm ├── Atari800Win.hpj ├── BMP │ ├── Keyboard.bmp │ ├── MainWindow.bmp │ ├── MainWindow.shg │ ├── Maximize.bmp │ ├── QMark.bmp │ ├── ReadLED.bmp │ └── WriteLED.bmp ├── MakeHelp.bat └── RTF │ ├── Help.doc │ └── Help.rtf ├── Include ├── AboutDlg.h ├── Atari800Win.h ├── Atari800WinDoc.h ├── Atari800WinView.h ├── BootTypeDlg.h ├── CartridgeTypeDlg.h ├── CheatDlg.h ├── CheatServer.h ├── CommonDlg.h ├── ConvertTypeDlg.h ├── Debug.h ├── DlgBase.h ├── DriveDlg.h ├── ErrorLogDlg.h ├── FileAssociationsBase.h ├── FileAssociationsDlg.h ├── FileService.h ├── FileSmallDlg.h ├── GraphicsAdvDlg.h ├── GraphicsDlg.h ├── HarddiskDlg.h ├── Helpers.h ├── JoystickAdvDlg.h ├── JoystickDlg.h ├── KailleraDlg.h ├── KeyTemplateDlg.h ├── KeyboardDlg.h ├── KeysetDlg.h ├── KeysetGKDlg.h ├── MainFrame.h ├── MouseDlg.h ├── NewDiskImageDlg.h ├── NewTapeImageDlg.h ├── PaletteDlg.h ├── PerformanceDlg.h ├── RomImagesBase.h ├── RomImagesDlg.h ├── SettingsAdvDlg.h ├── SettingsDlg.h ├── ShellPidl.h ├── ShellTree.h ├── SoundDlg.h ├── StatusTray.h ├── StdAfx.h ├── TapeDlg.h ├── UniStd.h ├── WarningDlg.h ├── WinConfig.h ├── WizardDlg.h ├── WizardStep1.h ├── WizardStep2.h ├── WizardStep3.h ├── atari800.h ├── avisave.h ├── cfg.h ├── config.h ├── core.h ├── crc.h ├── directdraw.h ├── display_win.h ├── globals.h ├── hq.h ├── input_win.h ├── kaillera.h ├── kailleraclient.h ├── macros.h ├── misc_win.h ├── png.h ├── pngconf.h ├── rdevice.h ├── registry.h ├── sound_win.h ├── stdint.h ├── timing.h ├── xfd2atr.h ├── zconf.h └── zlib.h ├── Lib ├── libpng.lib ├── libpng_d.lib ├── zlib.lib └── zlib_d.lib ├── Res ├── Atari800Win.rc ├── Res │ ├── Atari800Win.rc2 │ ├── AtariFile01.ico │ ├── AtariFile02.ico │ ├── AtariFile03.ico │ ├── AtariFile04.ico │ ├── AtariFile05.ico │ ├── AtariFile06.ico │ ├── AtariFile07.ico │ ├── AtariXE.ico │ ├── AtariXL.ico │ ├── OverscanFull.ico │ ├── OverscanNo.ico │ ├── OverscanVert.ico │ ├── Wizard.bmp │ ├── sb_amigamouse_d.bmp │ ├── sb_amigamouse_e.bmp │ ├── sb_autofire1_e.bmp │ ├── sb_autofire2_e.bmp │ ├── sb_autofire_d.bmp │ ├── sb_camera_d.bmp │ ├── sb_camera_e.bmp │ ├── sb_disk_d.bmp │ ├── sb_disk_e.bmp │ ├── sb_joystick_d.bmp │ ├── sb_joystick_e.bmp │ ├── sb_kaillera1_e.bmp │ ├── sb_kaillera2_e.bmp │ ├── sb_kaillera3_e.bmp │ ├── sb_kaillera4_e.bmp │ ├── sb_kaillera_d.bmp │ ├── sb_kaillera_e.bmp │ ├── sb_koalapad.d.bmp │ ├── sb_koalapad_e.bmp │ ├── sb_lightgun_d.bmp │ ├── sb_lightgun_e.bmp │ ├── sb_lightpen_d.bmp │ ├── sb_lightpen_e.bmp │ ├── sb_mono_d.bmp │ ├── sb_mono_e.bmp │ ├── sb_none_d.bmp │ ├── sb_none_e.bmp │ ├── sb_paddles_d.bmp │ ├── sb_paddles_e.bmp │ ├── sb_run_d.bmp │ ├── sb_run_e.bmp │ ├── sb_runfast_d.bmp │ ├── sb_runfast_e.bmp │ ├── sb_stereo_d.bmp │ ├── sb_stereo_e.bmp │ ├── sb_stmouse_d.bmp │ ├── sb_stmouse_e.bmp │ ├── sb_tape_d.bmp │ ├── sb_tape_e.bmp │ ├── sb_touchtablet_d.bmp │ ├── sb_touchtablet_e.bmp │ ├── sb_trakball_d.bmp │ ├── sb_trakball_e.bmp │ ├── sb_tvntsc_e.bmp │ └── sb_tvpal_e.bmp └── resource.h ├── Sources ├── Atari800Win.cpp ├── Atari800WinDoc.cpp ├── Atari800WinView.cpp ├── CheatServer.cpp ├── Core │ ├── avisave.c │ ├── cfg.c │ ├── crc32.c │ ├── directdraw.c │ ├── display_win.c │ ├── globals.c │ ├── hq.c │ ├── hq2x.c │ ├── hq3x.c │ ├── hq4x.c │ ├── input_win.c │ ├── kaillera.c │ ├── misc_win.c │ ├── rdevice.c │ ├── registry.c │ ├── sound_win.c │ ├── timing.c │ └── xfd2atr.c ├── Debug.cpp ├── FileService.cpp ├── GUI │ ├── AboutDlg.cpp │ ├── BootTypeDlg.cpp │ ├── CartridgeTypeDlg.cpp │ ├── CheatDlg.cpp │ ├── CommonDlg.cpp │ ├── ConvertTypeDlg.cpp │ ├── DlgBase.cpp │ ├── DriveDlg.cpp │ ├── ErrorLogDlg.cpp │ ├── FileAssociationsBase.cpp │ ├── FileAssociationsDlg.cpp │ ├── FileSmallDlg.cpp │ ├── GraphicsAdvDlg.cpp │ ├── GraphicsDlg.cpp │ ├── HarddiskDlg.cpp │ ├── JoystickAdvDlg.cpp │ ├── JoystickDlg.cpp │ ├── KailleraDlg.cpp │ ├── KeyTemplateDlg.cpp │ ├── KeyboardDlg.cpp │ ├── KeysetDlg.cpp │ ├── KeysetGKDlg.cpp │ ├── MouseDlg.cpp │ ├── NewDiskImageDlg.cpp │ ├── NewTapeImageDlg.cpp │ ├── PaletteDlg.cpp │ ├── PerformanceDlg.cpp │ ├── RomImagesBase.cpp │ ├── RomImagesDlg.cpp │ ├── SettingsAdvDlg.cpp │ ├── SettingsDlg.cpp │ ├── ShellPidl.cpp │ ├── ShellTree.cpp │ ├── SoundDlg.cpp │ ├── StatusTray.cpp │ ├── TapeDlg.cpp │ ├── WarningDlg.cpp │ ├── WizardDlg.cpp │ ├── WizardStep1.cpp │ ├── WizardStep2.cpp │ └── WizardStep3.cpp ├── Helpers.cpp ├── MainFrame.cpp └── StdAfx.cpp └── gpl.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/.gitignore -------------------------------------------------------------------------------- /Atari800/src/afile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/afile.c -------------------------------------------------------------------------------- /Atari800/src/afile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/afile.h -------------------------------------------------------------------------------- /Atari800/src/akey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/akey.h -------------------------------------------------------------------------------- /Atari800/src/antic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/antic.c -------------------------------------------------------------------------------- /Atari800/src/antic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/antic.h -------------------------------------------------------------------------------- /Atari800/src/atari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/atari.c -------------------------------------------------------------------------------- /Atari800/src/atari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/atari.h -------------------------------------------------------------------------------- /Atari800/src/binload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/binload.c -------------------------------------------------------------------------------- /Atari800/src/binload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/binload.h -------------------------------------------------------------------------------- /Atari800/src/cartridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cartridge.c -------------------------------------------------------------------------------- /Atari800/src/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cartridge.h -------------------------------------------------------------------------------- /Atari800/src/cassette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cassette.c -------------------------------------------------------------------------------- /Atari800/src/cassette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cassette.h -------------------------------------------------------------------------------- /Atari800/src/colours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours.c -------------------------------------------------------------------------------- /Atari800/src/colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours.h -------------------------------------------------------------------------------- /Atari800/src/colours_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_external.c -------------------------------------------------------------------------------- /Atari800/src/colours_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_external.h -------------------------------------------------------------------------------- /Atari800/src/colours_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_ntsc.c -------------------------------------------------------------------------------- /Atari800/src/colours_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_ntsc.h -------------------------------------------------------------------------------- /Atari800/src/colours_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_pal.c -------------------------------------------------------------------------------- /Atari800/src/colours_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/colours_pal.h -------------------------------------------------------------------------------- /Atari800/src/compfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/compfile.c -------------------------------------------------------------------------------- /Atari800/src/compfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/compfile.h -------------------------------------------------------------------------------- /Atari800/src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cpu.c -------------------------------------------------------------------------------- /Atari800/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cpu.h -------------------------------------------------------------------------------- /Atari800/src/cycle_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cycle_map.c -------------------------------------------------------------------------------- /Atari800/src/cycle_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/cycle_map.h -------------------------------------------------------------------------------- /Atari800/src/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/devices.c -------------------------------------------------------------------------------- /Atari800/src/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/devices.h -------------------------------------------------------------------------------- /Atari800/src/emuos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/emuos.h -------------------------------------------------------------------------------- /Atari800/src/esc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/esc.c -------------------------------------------------------------------------------- /Atari800/src/esc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/esc.h -------------------------------------------------------------------------------- /Atari800/src/gtia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/gtia.c -------------------------------------------------------------------------------- /Atari800/src/gtia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/gtia.h -------------------------------------------------------------------------------- /Atari800/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/input.c -------------------------------------------------------------------------------- /Atari800/src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/input.h -------------------------------------------------------------------------------- /Atari800/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/log.c -------------------------------------------------------------------------------- /Atari800/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/log.h -------------------------------------------------------------------------------- /Atari800/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/memory.c -------------------------------------------------------------------------------- /Atari800/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/memory.h -------------------------------------------------------------------------------- /Atari800/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/monitor.c -------------------------------------------------------------------------------- /Atari800/src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/monitor.h -------------------------------------------------------------------------------- /Atari800/src/mzpokeysnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/mzpokeysnd.c -------------------------------------------------------------------------------- /Atari800/src/mzpokeysnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/mzpokeysnd.h -------------------------------------------------------------------------------- /Atari800/src/pbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pbi.c -------------------------------------------------------------------------------- /Atari800/src/pbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pbi.h -------------------------------------------------------------------------------- /Atari800/src/pia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pia.c -------------------------------------------------------------------------------- /Atari800/src/pia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pia.h -------------------------------------------------------------------------------- /Atari800/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/platform.h -------------------------------------------------------------------------------- /Atari800/src/pokey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pokey.c -------------------------------------------------------------------------------- /Atari800/src/pokey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pokey.h -------------------------------------------------------------------------------- /Atari800/src/pokeysnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pokeysnd.c -------------------------------------------------------------------------------- /Atari800/src/pokeysnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/pokeysnd.h -------------------------------------------------------------------------------- /Atari800/src/remez.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/remez.c -------------------------------------------------------------------------------- /Atari800/src/remez.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/remez.h -------------------------------------------------------------------------------- /Atari800/src/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/rtime.c -------------------------------------------------------------------------------- /Atari800/src/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/rtime.h -------------------------------------------------------------------------------- /Atari800/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/screen.c -------------------------------------------------------------------------------- /Atari800/src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/screen.h -------------------------------------------------------------------------------- /Atari800/src/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/sio.c -------------------------------------------------------------------------------- /Atari800/src/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/sio.h -------------------------------------------------------------------------------- /Atari800/src/sndsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/sndsave.c -------------------------------------------------------------------------------- /Atari800/src/sndsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/sndsave.h -------------------------------------------------------------------------------- /Atari800/src/statesav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/statesav.c -------------------------------------------------------------------------------- /Atari800/src/statesav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/statesav.h -------------------------------------------------------------------------------- /Atari800/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/util.c -------------------------------------------------------------------------------- /Atari800/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Atari800/src/util.h -------------------------------------------------------------------------------- /Build/NSIS/Atari800Win.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Build/NSIS/Atari800Win.nsi -------------------------------------------------------------------------------- /Build/VS2005/Atari800WinPLus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Build/VS2005/Atari800WinPLus.sln -------------------------------------------------------------------------------- /Build/VS2005/Atari800WinPLus.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Build/VS2005/Atari800WinPLus.vcproj -------------------------------------------------------------------------------- /Build/Vs2010/Atari800WinPLus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Build/Vs2010/Atari800WinPLus.sln -------------------------------------------------------------------------------- /Build/Vs2010/Atari800WinPLus.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Build/Vs2010/Atari800WinPLus.vcproj -------------------------------------------------------------------------------- /Distribution/ATARI800WIN.GID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/ATARI800WIN.GID -------------------------------------------------------------------------------- /Distribution/ATARI800WIN.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/ATARI800WIN.HLP -------------------------------------------------------------------------------- /Distribution/Atari800Win.cnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Atari800Win.cnt -------------------------------------------------------------------------------- /Distribution/Keyboard/Default.a8k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Keyboard/Default.a8k -------------------------------------------------------------------------------- /Distribution/Keyboard/Raster.a8k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Keyboard/Raster.a8k -------------------------------------------------------------------------------- /Distribution/Keyboard/Ultima3.a8k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Keyboard/Ultima3.a8k -------------------------------------------------------------------------------- /Distribution/Palette/Default.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Default.act -------------------------------------------------------------------------------- /Distribution/Palette/Gray.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Gray.act -------------------------------------------------------------------------------- /Distribution/Palette/Green.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Green.act -------------------------------------------------------------------------------- /Distribution/Palette/Jakub.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Jakub.act -------------------------------------------------------------------------------- /Distribution/Palette/Real.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Real.act -------------------------------------------------------------------------------- /Distribution/Palette/Xformer.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Palette/Xformer.act -------------------------------------------------------------------------------- /Distribution/Rom/ATARIBAS.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Rom/ATARIBAS.ROM -------------------------------------------------------------------------------- /Distribution/Rom/ATARIOSB.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Rom/ATARIOSB.ROM -------------------------------------------------------------------------------- /Distribution/Rom/ATARIXL.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Rom/ATARIXL.ROM -------------------------------------------------------------------------------- /Distribution/Rom/QMeg 3.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Rom/QMeg 3.rom -------------------------------------------------------------------------------- /Distribution/Rom/QMeg 4.4.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Rom/QMeg 4.4.rom -------------------------------------------------------------------------------- /Distribution/Trainer/AlleyCat.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/AlleyCat.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/BlueThunder.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/BlueThunder.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/BoulderDash.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/BoulderDash.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/BruceLee.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/BruceLee.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Conan.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Conan.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/DanStrikesBack.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/DanStrikesBack.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/DonkeyKong.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/DonkeyKong.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/DonkeyKongJunior.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/DonkeyKongJunior.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Draconus.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Draconus.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Dropzone.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Dropzone.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/FortApocalypse.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/FortApocalypse.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Goonies.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Goonies.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Gyruss.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Gyruss.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/HERO.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/HERO.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/JetSetWilly.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/JetSetWilly.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/KeystoneKapers.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/KeystoneKapers.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Loco.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Loco.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/MontezumasRevenge.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/MontezumasRevenge.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/MoonPatrol.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/MoonPatrol.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/MrRobotAndHisRobotFactory.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/MrRobotAndHisRobotFactory.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/RiverRaid.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/RiverRaid.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Starquake.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Starquake.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Zorro.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Zorro.a8t -------------------------------------------------------------------------------- /Distribution/Trainer/Zorro_FullVersion.a8t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/Trainer/Zorro_FullVersion.a8t -------------------------------------------------------------------------------- /Distribution/kailleraclient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/kailleraclient.dll -------------------------------------------------------------------------------- /Distribution/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Distribution/readme.txt -------------------------------------------------------------------------------- /Help/ATARI800WIN.GID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/ATARI800WIN.GID -------------------------------------------------------------------------------- /Help/ATARI800WIN.HLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/ATARI800WIN.HLP -------------------------------------------------------------------------------- /Help/Atari800Win.cnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/Atari800Win.cnt -------------------------------------------------------------------------------- /Help/Atari800Win.ha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/Atari800Win.ha -------------------------------------------------------------------------------- /Help/Atari800Win.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/Atari800Win.hm -------------------------------------------------------------------------------- /Help/Atari800Win.hpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/Atari800Win.hpj -------------------------------------------------------------------------------- /Help/BMP/Keyboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/Keyboard.bmp -------------------------------------------------------------------------------- /Help/BMP/MainWindow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/MainWindow.bmp -------------------------------------------------------------------------------- /Help/BMP/MainWindow.shg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/MainWindow.shg -------------------------------------------------------------------------------- /Help/BMP/Maximize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/Maximize.bmp -------------------------------------------------------------------------------- /Help/BMP/QMark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/QMark.bmp -------------------------------------------------------------------------------- /Help/BMP/ReadLED.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/ReadLED.bmp -------------------------------------------------------------------------------- /Help/BMP/WriteLED.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/BMP/WriteLED.bmp -------------------------------------------------------------------------------- /Help/MakeHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/MakeHelp.bat -------------------------------------------------------------------------------- /Help/RTF/Help.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/RTF/Help.doc -------------------------------------------------------------------------------- /Help/RTF/Help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Help/RTF/Help.rtf -------------------------------------------------------------------------------- /Include/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/AboutDlg.h -------------------------------------------------------------------------------- /Include/Atari800Win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/Atari800Win.h -------------------------------------------------------------------------------- /Include/Atari800WinDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/Atari800WinDoc.h -------------------------------------------------------------------------------- /Include/Atari800WinView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/Atari800WinView.h -------------------------------------------------------------------------------- /Include/BootTypeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/BootTypeDlg.h -------------------------------------------------------------------------------- /Include/CartridgeTypeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/CartridgeTypeDlg.h -------------------------------------------------------------------------------- /Include/CheatDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/CheatDlg.h -------------------------------------------------------------------------------- /Include/CheatServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/CheatServer.h -------------------------------------------------------------------------------- /Include/CommonDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/CommonDlg.h -------------------------------------------------------------------------------- /Include/ConvertTypeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/ConvertTypeDlg.h -------------------------------------------------------------------------------- /Include/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/Debug.h -------------------------------------------------------------------------------- /Include/DlgBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/DlgBase.h -------------------------------------------------------------------------------- /Include/DriveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/DriveDlg.h -------------------------------------------------------------------------------- /Include/ErrorLogDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/ErrorLogDlg.h -------------------------------------------------------------------------------- /Include/FileAssociationsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/FileAssociationsBase.h -------------------------------------------------------------------------------- /Include/FileAssociationsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/FileAssociationsDlg.h -------------------------------------------------------------------------------- /Include/FileService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/FileService.h -------------------------------------------------------------------------------- /Include/FileSmallDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/FileSmallDlg.h -------------------------------------------------------------------------------- /Include/GraphicsAdvDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/GraphicsAdvDlg.h -------------------------------------------------------------------------------- /Include/GraphicsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/GraphicsDlg.h -------------------------------------------------------------------------------- /Include/HarddiskDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/HarddiskDlg.h -------------------------------------------------------------------------------- /Include/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/Helpers.h -------------------------------------------------------------------------------- /Include/JoystickAdvDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/JoystickAdvDlg.h -------------------------------------------------------------------------------- /Include/JoystickDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/JoystickDlg.h -------------------------------------------------------------------------------- /Include/KailleraDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/KailleraDlg.h -------------------------------------------------------------------------------- /Include/KeyTemplateDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/KeyTemplateDlg.h -------------------------------------------------------------------------------- /Include/KeyboardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/KeyboardDlg.h -------------------------------------------------------------------------------- /Include/KeysetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/KeysetDlg.h -------------------------------------------------------------------------------- /Include/KeysetGKDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/KeysetGKDlg.h -------------------------------------------------------------------------------- /Include/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/MainFrame.h -------------------------------------------------------------------------------- /Include/MouseDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/MouseDlg.h -------------------------------------------------------------------------------- /Include/NewDiskImageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/NewDiskImageDlg.h -------------------------------------------------------------------------------- /Include/NewTapeImageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/NewTapeImageDlg.h -------------------------------------------------------------------------------- /Include/PaletteDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/PaletteDlg.h -------------------------------------------------------------------------------- /Include/PerformanceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/PerformanceDlg.h -------------------------------------------------------------------------------- /Include/RomImagesBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/RomImagesBase.h -------------------------------------------------------------------------------- /Include/RomImagesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/RomImagesDlg.h -------------------------------------------------------------------------------- /Include/SettingsAdvDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/SettingsAdvDlg.h -------------------------------------------------------------------------------- /Include/SettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/SettingsDlg.h -------------------------------------------------------------------------------- /Include/ShellPidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/ShellPidl.h -------------------------------------------------------------------------------- /Include/ShellTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/ShellTree.h -------------------------------------------------------------------------------- /Include/SoundDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/SoundDlg.h -------------------------------------------------------------------------------- /Include/StatusTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/StatusTray.h -------------------------------------------------------------------------------- /Include/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/StdAfx.h -------------------------------------------------------------------------------- /Include/TapeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/TapeDlg.h -------------------------------------------------------------------------------- /Include/UniStd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/UniStd.h -------------------------------------------------------------------------------- /Include/WarningDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WarningDlg.h -------------------------------------------------------------------------------- /Include/WinConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WinConfig.h -------------------------------------------------------------------------------- /Include/WizardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WizardDlg.h -------------------------------------------------------------------------------- /Include/WizardStep1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WizardStep1.h -------------------------------------------------------------------------------- /Include/WizardStep2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WizardStep2.h -------------------------------------------------------------------------------- /Include/WizardStep3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/WizardStep3.h -------------------------------------------------------------------------------- /Include/atari800.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/atari800.h -------------------------------------------------------------------------------- /Include/avisave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/avisave.h -------------------------------------------------------------------------------- /Include/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/cfg.h -------------------------------------------------------------------------------- /Include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/config.h -------------------------------------------------------------------------------- /Include/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/core.h -------------------------------------------------------------------------------- /Include/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/crc.h -------------------------------------------------------------------------------- /Include/directdraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/directdraw.h -------------------------------------------------------------------------------- /Include/display_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/display_win.h -------------------------------------------------------------------------------- /Include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/globals.h -------------------------------------------------------------------------------- /Include/hq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/hq.h -------------------------------------------------------------------------------- /Include/input_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/input_win.h -------------------------------------------------------------------------------- /Include/kaillera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/kaillera.h -------------------------------------------------------------------------------- /Include/kailleraclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/kailleraclient.h -------------------------------------------------------------------------------- /Include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/macros.h -------------------------------------------------------------------------------- /Include/misc_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/misc_win.h -------------------------------------------------------------------------------- /Include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/png.h -------------------------------------------------------------------------------- /Include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/pngconf.h -------------------------------------------------------------------------------- /Include/rdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/rdevice.h -------------------------------------------------------------------------------- /Include/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/registry.h -------------------------------------------------------------------------------- /Include/sound_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/sound_win.h -------------------------------------------------------------------------------- /Include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/stdint.h -------------------------------------------------------------------------------- /Include/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/timing.h -------------------------------------------------------------------------------- /Include/xfd2atr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/xfd2atr.h -------------------------------------------------------------------------------- /Include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/zconf.h -------------------------------------------------------------------------------- /Include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Include/zlib.h -------------------------------------------------------------------------------- /Lib/libpng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Lib/libpng.lib -------------------------------------------------------------------------------- /Lib/libpng_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Lib/libpng_d.lib -------------------------------------------------------------------------------- /Lib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Lib/zlib.lib -------------------------------------------------------------------------------- /Lib/zlib_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Lib/zlib_d.lib -------------------------------------------------------------------------------- /Res/Atari800Win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Atari800Win.rc -------------------------------------------------------------------------------- /Res/Res/Atari800Win.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/Atari800Win.rc2 -------------------------------------------------------------------------------- /Res/Res/AtariFile01.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile01.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile02.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile02.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile03.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile03.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile04.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile04.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile05.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile05.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile06.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile06.ico -------------------------------------------------------------------------------- /Res/Res/AtariFile07.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariFile07.ico -------------------------------------------------------------------------------- /Res/Res/AtariXE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariXE.ico -------------------------------------------------------------------------------- /Res/Res/AtariXL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/AtariXL.ico -------------------------------------------------------------------------------- /Res/Res/OverscanFull.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/OverscanFull.ico -------------------------------------------------------------------------------- /Res/Res/OverscanNo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/OverscanNo.ico -------------------------------------------------------------------------------- /Res/Res/OverscanVert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/OverscanVert.ico -------------------------------------------------------------------------------- /Res/Res/Wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/Wizard.bmp -------------------------------------------------------------------------------- /Res/Res/sb_amigamouse_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_amigamouse_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_amigamouse_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_amigamouse_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_autofire1_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_autofire1_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_autofire2_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_autofire2_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_autofire_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_autofire_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_camera_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_camera_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_camera_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_camera_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_disk_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_disk_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_disk_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_disk_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_joystick_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_joystick_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_joystick_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_joystick_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera1_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera1_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera2_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera2_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera3_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera3_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera4_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera4_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_kaillera_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_kaillera_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_koalapad.d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_koalapad.d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_koalapad_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_koalapad_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_lightgun_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_lightgun_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_lightgun_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_lightgun_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_lightpen_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_lightpen_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_lightpen_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_lightpen_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_mono_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_mono_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_mono_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_mono_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_none_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_none_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_none_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_none_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_paddles_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_paddles_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_paddles_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_paddles_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_run_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_run_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_run_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_run_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_runfast_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_runfast_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_runfast_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_runfast_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_stereo_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_stereo_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_stereo_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_stereo_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_stmouse_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_stmouse_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_stmouse_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_stmouse_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_tape_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_tape_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_tape_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_tape_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_touchtablet_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_touchtablet_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_touchtablet_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_touchtablet_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_trakball_d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_trakball_d.bmp -------------------------------------------------------------------------------- /Res/Res/sb_trakball_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_trakball_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_tvntsc_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_tvntsc_e.bmp -------------------------------------------------------------------------------- /Res/Res/sb_tvpal_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/Res/sb_tvpal_e.bmp -------------------------------------------------------------------------------- /Res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Res/resource.h -------------------------------------------------------------------------------- /Sources/Atari800Win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Atari800Win.cpp -------------------------------------------------------------------------------- /Sources/Atari800WinDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Atari800WinDoc.cpp -------------------------------------------------------------------------------- /Sources/Atari800WinView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Atari800WinView.cpp -------------------------------------------------------------------------------- /Sources/CheatServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/CheatServer.cpp -------------------------------------------------------------------------------- /Sources/Core/avisave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/avisave.c -------------------------------------------------------------------------------- /Sources/Core/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/cfg.c -------------------------------------------------------------------------------- /Sources/Core/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/crc32.c -------------------------------------------------------------------------------- /Sources/Core/directdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/directdraw.c -------------------------------------------------------------------------------- /Sources/Core/display_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/display_win.c -------------------------------------------------------------------------------- /Sources/Core/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/globals.c -------------------------------------------------------------------------------- /Sources/Core/hq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/hq.c -------------------------------------------------------------------------------- /Sources/Core/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/hq2x.c -------------------------------------------------------------------------------- /Sources/Core/hq3x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/hq3x.c -------------------------------------------------------------------------------- /Sources/Core/hq4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/hq4x.c -------------------------------------------------------------------------------- /Sources/Core/input_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/input_win.c -------------------------------------------------------------------------------- /Sources/Core/kaillera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/kaillera.c -------------------------------------------------------------------------------- /Sources/Core/misc_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/misc_win.c -------------------------------------------------------------------------------- /Sources/Core/rdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/rdevice.c -------------------------------------------------------------------------------- /Sources/Core/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/registry.c -------------------------------------------------------------------------------- /Sources/Core/sound_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/sound_win.c -------------------------------------------------------------------------------- /Sources/Core/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/timing.c -------------------------------------------------------------------------------- /Sources/Core/xfd2atr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Core/xfd2atr.c -------------------------------------------------------------------------------- /Sources/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Debug.cpp -------------------------------------------------------------------------------- /Sources/FileService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/FileService.cpp -------------------------------------------------------------------------------- /Sources/GUI/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/AboutDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/BootTypeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/BootTypeDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/CartridgeTypeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/CartridgeTypeDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/CheatDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/CheatDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/CommonDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/CommonDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/ConvertTypeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/ConvertTypeDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/DlgBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/DlgBase.cpp -------------------------------------------------------------------------------- /Sources/GUI/DriveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/DriveDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/ErrorLogDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/ErrorLogDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/FileAssociationsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/FileAssociationsBase.cpp -------------------------------------------------------------------------------- /Sources/GUI/FileAssociationsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/FileAssociationsDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/FileSmallDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/FileSmallDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/GraphicsAdvDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/GraphicsAdvDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/GraphicsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/GraphicsDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/HarddiskDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/HarddiskDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/JoystickAdvDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/JoystickAdvDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/JoystickDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/JoystickDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/KailleraDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/KailleraDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/KeyTemplateDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/KeyTemplateDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/KeyboardDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/KeyboardDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/KeysetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/KeysetDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/KeysetGKDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/KeysetGKDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/MouseDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/MouseDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/NewDiskImageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/NewDiskImageDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/NewTapeImageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/NewTapeImageDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/PaletteDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/PaletteDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/PerformanceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/PerformanceDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/RomImagesBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/RomImagesBase.cpp -------------------------------------------------------------------------------- /Sources/GUI/RomImagesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/RomImagesDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/SettingsAdvDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/SettingsAdvDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/SettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/SettingsDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/ShellPidl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/ShellPidl.cpp -------------------------------------------------------------------------------- /Sources/GUI/ShellTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/ShellTree.cpp -------------------------------------------------------------------------------- /Sources/GUI/SoundDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/SoundDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/StatusTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/StatusTray.cpp -------------------------------------------------------------------------------- /Sources/GUI/TapeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/TapeDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/WarningDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/WarningDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/WizardDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/WizardDlg.cpp -------------------------------------------------------------------------------- /Sources/GUI/WizardStep1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/WizardStep1.cpp -------------------------------------------------------------------------------- /Sources/GUI/WizardStep2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/WizardStep2.cpp -------------------------------------------------------------------------------- /Sources/GUI/WizardStep3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/GUI/WizardStep3.cpp -------------------------------------------------------------------------------- /Sources/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/Helpers.cpp -------------------------------------------------------------------------------- /Sources/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/MainFrame.cpp -------------------------------------------------------------------------------- /Sources/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/Sources/StdAfx.cpp -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaskier/Atari800Win-PLus/HEAD/gpl.txt --------------------------------------------------------------------------------