├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CMakeLists.txt ├── README.md ├── assets ├── fonts │ ├── Cousine-Regular-cut.ttf │ ├── Cousine-Regular.ttf │ ├── CousineRegular-cut.h │ ├── JetBrainsMono-Bold-Italic.ttf │ ├── JetBrainsMono-Bold.ttf │ ├── JetBrainsMono-ExtraBold-Italic.ttf │ ├── JetBrainsMono-ExtraBold.ttf │ ├── JetBrainsMono-Italic.ttf │ ├── JetBrainsMono-Medium-Italic.ttf │ ├── JetBrainsMono-Medium.ttf │ ├── JetBrainsMono-Regular.ttf │ ├── ProFontIIx-compressed.bin │ ├── ProFontIIx-compressed.h │ ├── ProFontIIx.h │ ├── ProFontIIx.ttf │ ├── ProFontWindowsPL.h │ ├── ProFontWindowsPL.ttf │ ├── font-c64-1-writer.bin │ ├── font-c64-1-writer.h │ ├── font-c64-5x5.bin │ ├── font-c64-5x5.h │ ├── font-c64-ahoy-art-deco.bin │ └── font-c64-ahoy-art-deco.h ├── icons │ ├── 65XEDebugger-icon.png │ ├── C64Debugger-icon.png │ └── NESDebugger-icon.png ├── template │ ├── convert-template.sh │ ├── empty.d64 │ ├── reset-contents.snap │ ├── reset-load.snap │ ├── reset_basic.snap │ ├── reset_basic.snap.zlib │ └── reset_basic_snap_zlib.h └── toolbar │ ├── convert.sh │ ├── icon_clear.png │ ├── icon_close.png │ ├── icon_export.png │ ├── icon_import.png │ ├── icon_new.png │ ├── icon_open.png │ ├── icon_raw_export.png │ ├── icon_raw_import.png │ ├── icon_save.png │ ├── icon_settings.png │ ├── icon_small_close.png │ ├── icon_small_export.png │ ├── icon_small_import.png │ ├── icon_tool_brush_circle.png │ ├── icon_tool_brush_square.png │ ├── icon_tool_circle.png │ ├── icon_tool_dither.png │ ├── icon_tool_fill.png │ ├── icon_tool_line.png │ ├── icon_tool_on_top_off.png │ ├── icon_tool_on_top_on.png │ ├── icon_tool_pen.png │ ├── icon_tool_rectangle.png │ ├── icon_toolbox_export.png │ ├── icon_toolbox_import.png │ └── icons_small.ai ├── clean-up-dirt.sh ├── docs ├── README-C64-65XE-NES-Debugger.txt ├── a800fixes │ └── atari800-500-fixes.diff ├── release-notes.txt └── specs │ ├── RetroDebugger KickAss asm integration specs.docx │ └── RetroDebugger pipe integration specs.docx ├── patch-apply.sh ├── patch-format.sh ├── platform ├── Linux │ └── src.Linux │ │ ├── archdep.c │ │ ├── archdep.h │ │ └── mididrv.c ├── MacOS │ ├── Retro Debugger.entitlements │ ├── build.sh │ ├── c64d.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── c64d.xcscmblueprint │ │ │ └── xcuserdata │ │ │ │ └── mars.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── mars.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Retro Debugger.xcscheme │ │ │ └── xcschememanagement.plist │ └── src.MacOS │ │ ├── Assets.xcassets │ │ ├── AppIcon 65XE.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256-1.png │ │ │ ├── icon256.png │ │ │ ├── icon32-1.png │ │ │ ├── icon32.png │ │ │ ├── icon512-1.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ ├── AppIcon C64.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon256-1.png │ │ │ ├── icon256.png │ │ │ ├── icon32-1.png │ │ │ ├── icon32.png │ │ │ ├── icon512-1.png │ │ │ ├── icon512.png │ │ │ └── icon64.png │ │ ├── Contents.json │ │ └── IconPRG.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_32x32.png │ │ │ └── icon_32x32@2x.png │ │ ├── Info.plist │ │ ├── archdep.c │ │ ├── archdep.h │ │ └── mididrv.c └── Windows │ ├── .vs │ └── c64d │ │ └── v16 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── Solution.VC.db │ ├── _RUNTIME_ │ └── LogConsole.exe │ ├── c64d.sln │ ├── c64d │ ├── MTEngineSDL.props │ ├── c64d.vcxproj │ ├── c64d.vcxproj.filters │ └── c64d.vcxproj.user │ ├── icons │ ├── icon512.ico │ └── icon64.ico │ └── src.Windows │ ├── arch │ ├── archdep.c │ ├── archdep.h │ ├── ide-config.h │ ├── ide-siddefs.h │ ├── ide-siddtvdefs.h │ ├── ide-sidfpdefs.h │ ├── inttypes.h │ ├── mididrv.c │ ├── system.c │ ├── system.h │ ├── ui-resources.c │ └── wpcap │ │ ├── bittypes.h │ │ ├── ip6_misc.h │ │ ├── net │ │ └── bpf.h │ │ ├── pcap-stdinc.h │ │ └── pcap.h │ ├── dirent.h │ ├── getopt.c │ ├── getopt.h │ ├── hardsid │ ├── hardsid-win32-drv.c │ ├── hardsid.c │ ├── hs-win32-dll.c │ ├── hs-win32-isa.c │ ├── hs-win32-pci.c │ ├── hs-win32.h │ └── wininpoutp.h │ ├── libgen.h │ ├── resource.h │ ├── resources.rc │ ├── win-gettimeofday.cpp │ ├── win-gettimeofday.h │ ├── win-usleep.cpp │ └── win-usleep.h ├── src ├── C64D_Version.h ├── DebugInterface │ ├── C64 │ │ ├── CDataAdapterDrive1541Minimal.cpp │ │ ├── CDataAdapterDrive1541Minimal.h │ │ ├── CDebugDataAdapterDrive1541Contents.cpp │ │ ├── CDebugDataAdapterDrive1541Contents.h │ │ ├── CDebugInterfaceC64.cpp │ │ ├── CDebugInterfaceC64.h │ │ ├── CDebugSymbolsC64.cpp │ │ ├── CDebugSymbolsC64.h │ │ ├── CDebugSymbolsDrive1541.cpp │ │ ├── CDebugSymbolsDrive1541.h │ │ ├── CDebugSymbolsSegmentC64.cpp │ │ ├── CDebugSymbolsSegmentC64.h │ │ ├── CDebugSymbolsSegmentDrive1541.cpp │ │ ├── CDebugSymbolsSegmentDrive1541.h │ │ ├── CDiskImageD64.cpp │ │ └── CDiskImageD64.h │ ├── CDebugBreakpoints.cpp │ ├── CDebugBreakpoints.h │ ├── CDebugDataAdapter.cpp │ ├── CDebugDataAdapter.h │ ├── CDebugEventsHistory.cpp │ ├── CDebugEventsHistory.h │ ├── CDebugInterface.cpp │ ├── CDebugInterface.h │ ├── CDebugInterfaceTask.cpp │ ├── CDebugInterfaceTask.h │ ├── CDebuggerApi.cpp │ ├── CDebuggerApi.h │ ├── CDebuggerEmulatorPlugin.cpp │ ├── CDebuggerEmulatorPlugin.h │ ├── DebuggerDefs.h │ ├── INT_BinaryProtocol.cpp │ ├── INT_BinaryProtocol.h │ ├── MenuItems │ │ ├── CDebugInterfaceMenuItem.cpp │ │ ├── CDebugInterfaceMenuItem.h │ │ ├── CDebugInterfaceMenuItemFolder.cpp │ │ ├── CDebugInterfaceMenuItemFolder.h │ │ ├── CDebugInterfaceMenuItemView.cpp │ │ └── CDebugInterfaceMenuItemView.h │ └── Symbols │ │ ├── CDebugAsmSource.cpp │ │ ├── CDebugAsmSource.h │ │ ├── CDebugBreakpoint.cpp │ │ ├── CDebugBreakpoint.h │ │ ├── CDebugBreakpointAddr.cpp │ │ ├── CDebugBreakpointAddr.h │ │ ├── CDebugBreakpointData.cpp │ │ ├── CDebugBreakpointData.h │ │ ├── CDebugBreakpointEventCallback.cpp │ │ ├── CDebugBreakpointEventCallback.h │ │ ├── CDebugBreakpointRasterLine.cpp │ │ ├── CDebugBreakpointRasterLine.h │ │ ├── CDebugBreakpointsAddr.cpp │ │ ├── CDebugBreakpointsAddr.h │ │ ├── CDebugBreakpointsData.cpp │ │ ├── CDebugBreakpointsData.h │ │ ├── CDebugBreakpointsRasterLine.cpp │ │ ├── CDebugBreakpointsRasterLine.h │ │ ├── CDebugMemory.cpp │ │ ├── CDebugMemory.h │ │ ├── CDebugMemoryCell.cpp │ │ ├── CDebugMemoryCell.h │ │ ├── CDebugSymbols.cpp │ │ ├── CDebugSymbols.h │ │ ├── CDebugSymbolsCodeLabel.cpp │ │ ├── CDebugSymbolsCodeLabel.h │ │ ├── CDebugSymbolsDataWatch.cpp │ │ ├── CDebugSymbolsDataWatch.h │ │ ├── CDebugSymbolsSegment.cpp │ │ └── CDebugSymbolsSegment.h ├── Embedded │ ├── FontCousineRegular.h │ ├── FontDroidSans.h │ ├── FontExoMedium.h │ ├── FontKarlaRegular.h │ ├── FontLiberationSans.h │ ├── FontMonoki.h │ ├── FontPTMono.h │ ├── FontPlexMono.h │ ├── FontPlexSans.h │ ├── FontProFontIIx.h │ ├── FontRobotoMedium.h │ ├── FontSweet16mono.h │ ├── FontUnifont.h │ ├── RetroDebuggerEmbeddedData.cpp │ ├── RetroDebuggerEmbeddedData.h │ ├── icon_clear_gfx.h │ ├── icon_close_gfx.h │ ├── icon_export_gfx.h │ ├── icon_import_gfx.h │ ├── icon_new_gfx.h │ ├── icon_open_gfx.h │ ├── icon_raw_export_gfx.h │ ├── icon_raw_import_gfx.h │ ├── icon_save_gfx.h │ ├── icon_settings_gfx.h │ ├── icon_small_close_gfx.h │ ├── icon_small_export_gfx.h │ ├── icon_small_import_gfx.h │ ├── icon_tool_brush_circle_gfx.h │ ├── icon_tool_brush_square_gfx.h │ ├── icon_tool_circle_gfx.h │ ├── icon_tool_dither_gfx.h │ ├── icon_tool_fill_gfx.h │ ├── icon_tool_line_gfx.h │ ├── icon_tool_on_top_off_gfx.h │ ├── icon_tool_on_top_on_gfx.h │ ├── icon_tool_pen_gfx.h │ ├── icon_tool_rectangle_gfx.h │ ├── icon_toolbox_export_gfx.h │ ├── icon_toolbox_import_gfx.h │ └── reset_basic_snap_zlib.h ├── Emulators │ ├── EmulatorsConfig.h │ ├── atari800 │ │ ├── AtariInterface │ │ │ ├── AtariWrapper.cpp │ │ │ ├── AtariWrapper.h │ │ │ ├── CAudioChannelAtari.cpp │ │ │ ├── CAudioChannelAtari.h │ │ │ ├── CDataAdapterAtari.cpp │ │ │ ├── CDataAdapterAtari.h │ │ │ ├── CDebugInterfaceAtari.cpp │ │ │ ├── CDebugInterfaceAtari.h │ │ │ ├── CDebuggerApiAtari.cpp │ │ │ ├── CDebuggerApiAtari.h │ │ │ ├── CDebuggerEmulatorPluginAtari.cpp │ │ │ └── CDebuggerEmulatorPluginAtari.h │ │ ├── a-cartridge.c │ │ ├── a-cartridge.h │ │ ├── a-crc32.c │ │ ├── a-crc32.h │ │ ├── a-log.c │ │ ├── a-log.h │ │ ├── a-monitor.c │ │ ├── a-monitor.h │ │ ├── a-platform.h │ │ ├── a-sound.c │ │ ├── a-sound.h │ │ ├── a-ui.c │ │ ├── a-ui.h │ │ ├── a-util.c │ │ ├── a-util.h │ │ ├── af80.c │ │ ├── af80.h │ │ ├── afile.c │ │ ├── afile.h │ │ ├── akey.h │ │ ├── antic.c │ │ ├── antic.h │ │ ├── artifact.c │ │ ├── artifact.h │ │ ├── atari-config.h │ │ ├── atari.c │ │ ├── atari.h │ │ ├── atari_ntsc │ │ │ ├── atari_ntsc.c │ │ │ ├── atari_ntsc.h │ │ │ ├── atari_ntsc_config.h │ │ │ └── atari_ntsc_impl.h │ │ ├── binload.c │ │ ├── binload.h │ │ ├── bit3.c │ │ ├── bit3.h │ │ ├── cassette.c │ │ ├── cassette.h │ │ ├── cfg.c │ │ ├── cfg.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.c │ │ ├── emuos.h │ │ ├── esc.c │ │ ├── esc.h │ │ ├── filter_ntsc.c │ │ ├── filter_ntsc.h │ │ ├── gtia.c │ │ ├── gtia.h │ │ ├── ide.c │ │ ├── ide.h │ │ ├── ide_internal.h │ │ ├── img_tape.c │ │ ├── img_tape.h │ │ ├── input.c │ │ ├── input.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── mzpokeysnd.c │ │ ├── mzpokeysnd.h │ │ ├── pal_blending.c │ │ ├── pal_blending.h │ │ ├── pbi.c │ │ ├── pbi.h │ │ ├── pbi_bb.c │ │ ├── pbi_bb.h │ │ ├── pbi_mio.c │ │ ├── pbi_mio.h │ │ ├── pbi_proto80.c │ │ ├── pbi_proto80.h │ │ ├── pbi_scsi.c │ │ ├── pbi_scsi.h │ │ ├── pbi_xld.c │ │ ├── pbi_xld.h │ │ ├── pcjoy.h │ │ ├── pia.c │ │ ├── pia.h │ │ ├── pokey.c │ │ ├── pokey.h │ │ ├── pokeyrec.c │ │ ├── pokeyrec.h │ │ ├── pokeysnd.c │ │ ├── pokeysnd.h │ │ ├── remez.c │ │ ├── remez.h │ │ ├── roms │ │ │ ├── altirra_5200_os.c │ │ │ ├── altirra_5200_os.h │ │ │ ├── altirra_basic.c │ │ │ ├── altirra_basic.h │ │ │ ├── altirraos_800.c │ │ │ ├── altirraos_800.h │ │ │ ├── altirraos_xl.c │ │ │ └── altirraos_xl.h │ │ ├── rtime.c │ │ ├── rtime.h │ │ ├── screen.c │ │ ├── screen.h │ │ ├── sdl │ │ │ ├── a-init.c │ │ │ ├── a-init.h │ │ │ ├── a-input.c │ │ │ ├── a-input.h │ │ │ ├── a-main.c │ │ │ ├── a-palette.c │ │ │ ├── a-palette.h │ │ │ ├── a-sdl-sound.c │ │ │ ├── a-video.c │ │ │ ├── a-video.h │ │ │ ├── a-video_gl.c │ │ │ ├── a-video_gl.h │ │ │ ├── a-video_sw.c │ │ │ └── a-video_sw.h │ │ ├── sio.c │ │ ├── sio.h │ │ ├── sndsave.c │ │ ├── sndsave.h │ │ ├── statesav.c │ │ ├── statesav.h │ │ ├── sysrom.c │ │ ├── sysrom.h │ │ ├── ui_basic.c │ │ ├── ui_basic.h │ │ ├── videomode.c │ │ ├── videomode.h │ │ ├── voicebox.c │ │ ├── voicebox.h │ │ ├── votrax.c │ │ ├── votrax.h │ │ ├── votraxsnd.c │ │ ├── votraxsnd.h │ │ ├── vtxsmpls.inc │ │ ├── xep80.c │ │ ├── xep80.h │ │ ├── xep80_fonts.c │ │ └── xep80_fonts.h │ ├── nestopiaue │ │ ├── NestopiaInterface │ │ │ ├── CAudioChannelNes.cpp │ │ │ ├── CAudioChannelNes.h │ │ │ ├── CDebugInterfaceNes.cpp │ │ │ ├── CDebugInterfaceNes.h │ │ │ ├── CDebugInterfaceNesTasks.cpp │ │ │ ├── CDebugInterfaceNesTasks.h │ │ │ ├── CDebuggerApiNestopia.cpp │ │ │ ├── CDebuggerApiNestopia.h │ │ │ ├── CDebuggerEmulatorPluginNestopia.cpp │ │ │ ├── CDebuggerEmulatorPluginNestopia.h │ │ │ ├── DataAdapters │ │ │ │ ├── CDataAdapterNesPpu.cpp │ │ │ │ ├── CDataAdapterNesPpu.h │ │ │ │ ├── CDataAdapterNesPpuChr.cpp │ │ │ │ ├── CDataAdapterNesPpuChr.h │ │ │ │ ├── CDataAdapterNesPpuNmt.cpp │ │ │ │ ├── CDataAdapterNesPpuNmt.h │ │ │ │ ├── CDataAdapterNesPpuOam.cpp │ │ │ │ ├── CDataAdapterNesPpuOam.h │ │ │ │ ├── CDataAdapterNesPpuPalette.cpp │ │ │ │ ├── CDataAdapterNesPpuPalette.h │ │ │ │ ├── CDataAdapterNesRam.cpp │ │ │ │ └── CDataAdapterNesRam.h │ │ │ ├── NesPalette.h │ │ │ ├── NesWrapper.cpp │ │ │ └── NesWrapper.h │ │ ├── common │ │ │ ├── nstcli.cpp │ │ │ ├── nstcli.h │ │ │ ├── nstconfig.cpp │ │ │ ├── nstconfig.h │ │ │ ├── nstfont.h │ │ │ ├── nstini.cpp │ │ │ └── nstini.h │ │ ├── core │ │ │ ├── NstApu.cpp │ │ │ ├── NstApu.hpp │ │ │ ├── NstAssert.cpp │ │ │ ├── NstAssert.hpp │ │ │ ├── NstBarcodeReader.hpp │ │ │ ├── NstBase.hpp │ │ │ ├── NstCartridge.cpp │ │ │ ├── NstCartridge.hpp │ │ │ ├── NstCartridgeInes.cpp │ │ │ ├── NstCartridgeInes.hpp │ │ │ ├── NstCartridgeRomset.cpp │ │ │ ├── NstCartridgeRomset.hpp │ │ │ ├── NstCartridgeUnif.cpp │ │ │ ├── NstCartridgeUnif.hpp │ │ │ ├── NstCheats.cpp │ │ │ ├── NstCheats.hpp │ │ │ ├── NstChecksum.cpp │ │ │ ├── NstChecksum.hpp │ │ │ ├── NstChips.cpp │ │ │ ├── NstChips.hpp │ │ │ ├── NstCore.cpp │ │ │ ├── NstCore.hpp │ │ │ ├── NstCpu.cpp │ │ │ ├── NstCpu.hpp │ │ │ ├── NstCrc32.cpp │ │ │ ├── NstCrc32.hpp │ │ │ ├── NstDipSwitches.hpp │ │ │ ├── NstFds.cpp │ │ │ ├── NstFds.hpp │ │ │ ├── NstFile.cpp │ │ │ ├── NstFile.hpp │ │ │ ├── NstFpuPrecision.hpp │ │ │ ├── NstHomebrew.cpp │ │ │ ├── NstHomebrew.hpp │ │ │ ├── NstHook.hpp │ │ │ ├── NstImage.cpp │ │ │ ├── NstImage.hpp │ │ │ ├── NstImageDatabase.cpp │ │ │ ├── NstImageDatabase.hpp │ │ │ ├── NstIoAccessor.hpp │ │ │ ├── NstIoLine.hpp │ │ │ ├── NstIoMap.hpp │ │ │ ├── NstIoPort.hpp │ │ │ ├── NstLog.cpp │ │ │ ├── NstLog.hpp │ │ │ ├── NstMachine.cpp │ │ │ ├── NstMachine.hpp │ │ │ ├── NstMemory.cpp │ │ │ ├── NstMemory.hpp │ │ │ ├── NstNsf.cpp │ │ │ ├── NstNsf.hpp │ │ │ ├── NstPatcher.cpp │ │ │ ├── NstPatcher.hpp │ │ │ ├── NstPatcherIps.cpp │ │ │ ├── NstPatcherIps.hpp │ │ │ ├── NstPatcherUps.cpp │ │ │ ├── NstPatcherUps.hpp │ │ │ ├── NstPins.cpp │ │ │ ├── NstPins.hpp │ │ │ ├── NstPpu.cpp │ │ │ ├── NstPpu.hpp │ │ │ ├── NstProperties.cpp │ │ │ ├── NstProperties.hpp │ │ │ ├── NstRam.cpp │ │ │ ├── NstRam.hpp │ │ │ ├── NstSha1.cpp │ │ │ ├── NstSha1.hpp │ │ │ ├── NstSoundPcm.cpp │ │ │ ├── NstSoundPcm.hpp │ │ │ ├── NstSoundPlayer.cpp │ │ │ ├── NstSoundPlayer.hpp │ │ │ ├── NstSoundRenderer.cpp │ │ │ ├── NstSoundRenderer.hpp │ │ │ ├── NstSoundRenderer.inl │ │ │ ├── NstState.cpp │ │ │ ├── NstState.hpp │ │ │ ├── NstStream.cpp │ │ │ ├── NstStream.hpp │ │ │ ├── NstTimer.hpp │ │ │ ├── NstTracker.cpp │ │ │ ├── NstTracker.hpp │ │ │ ├── NstTrackerMovie.cpp │ │ │ ├── NstTrackerMovie.hpp │ │ │ ├── NstTrackerRewinder.cpp │ │ │ ├── NstTrackerRewinder.hpp │ │ │ ├── NstVector.cpp │ │ │ ├── NstVector.hpp │ │ │ ├── NstVideoFilter2xSaI.cpp │ │ │ ├── NstVideoFilter2xSaI.hpp │ │ │ ├── NstVideoFilterHq2x.inl │ │ │ ├── NstVideoFilterHq3x.inl │ │ │ ├── NstVideoFilterHq4x.inl │ │ │ ├── NstVideoFilterHqX.cpp │ │ │ ├── NstVideoFilterHqX.hpp │ │ │ ├── NstVideoFilterNone.cpp │ │ │ ├── NstVideoFilterNone.hpp │ │ │ ├── NstVideoFilterNtsc.cpp │ │ │ ├── NstVideoFilterNtsc.hpp │ │ │ ├── NstVideoFilterNtscCfg.cpp │ │ │ ├── NstVideoFilterScaleX.cpp │ │ │ ├── NstVideoFilterScaleX.hpp │ │ │ ├── NstVideoFilterxBR.cpp │ │ │ ├── NstVideoFilterxBR.hpp │ │ │ ├── NstVideoRenderer.cpp │ │ │ ├── NstVideoRenderer.hpp │ │ │ ├── NstVideoScreen.cpp │ │ │ ├── NstVideoScreen.hpp │ │ │ ├── NstXml.cpp │ │ │ ├── NstXml.hpp │ │ │ ├── NstZlib.cpp │ │ │ ├── NstZlib.hpp │ │ │ ├── api │ │ │ │ ├── NstApi.hpp │ │ │ │ ├── NstApiBarcodeReader.cpp │ │ │ │ ├── NstApiBarcodeReader.hpp │ │ │ │ ├── NstApiCartridge.cpp │ │ │ │ ├── NstApiCartridge.hpp │ │ │ │ ├── NstApiCheats.cpp │ │ │ │ ├── NstApiCheats.hpp │ │ │ │ ├── NstApiConfig.hpp │ │ │ │ ├── NstApiDipSwitches.cpp │ │ │ │ ├── NstApiDipSwitches.hpp │ │ │ │ ├── NstApiEmulator.cpp │ │ │ │ ├── NstApiEmulator.hpp │ │ │ │ ├── NstApiFds.cpp │ │ │ │ ├── NstApiFds.hpp │ │ │ │ ├── NstApiHomebrew.cpp │ │ │ │ ├── NstApiHomebrew.hpp │ │ │ │ ├── NstApiInput.cpp │ │ │ │ ├── NstApiInput.hpp │ │ │ │ ├── NstApiMachine.cpp │ │ │ │ ├── NstApiMachine.hpp │ │ │ │ ├── NstApiMovie.cpp │ │ │ │ ├── NstApiMovie.hpp │ │ │ │ ├── NstApiNsf.cpp │ │ │ │ ├── NstApiNsf.hpp │ │ │ │ ├── NstApiRewinder.cpp │ │ │ │ ├── NstApiRewinder.hpp │ │ │ │ ├── NstApiSound.cpp │ │ │ │ ├── NstApiSound.hpp │ │ │ │ ├── NstApiTapeRecorder.cpp │ │ │ │ ├── NstApiTapeRecorder.hpp │ │ │ │ ├── NstApiUser.cpp │ │ │ │ ├── NstApiUser.hpp │ │ │ │ ├── NstApiVideo.cpp │ │ │ │ └── NstApiVideo.hpp │ │ │ ├── board │ │ │ │ ├── NstBoard.cpp │ │ │ │ ├── NstBoard.hpp │ │ │ │ ├── NstBoardAcclaim.hpp │ │ │ │ ├── NstBoardAcclaimMcAcc.cpp │ │ │ │ ├── NstBoardAcclaimMcAcc.hpp │ │ │ │ ├── NstBoardAction53.cpp │ │ │ │ ├── NstBoardAction53.hpp │ │ │ │ ├── NstBoardAe.cpp │ │ │ │ ├── NstBoardAe.hpp │ │ │ │ ├── NstBoardAgci.cpp │ │ │ │ ├── NstBoardAgci.hpp │ │ │ │ ├── NstBoardAve.hpp │ │ │ │ ├── NstBoardAveD1012.cpp │ │ │ │ ├── NstBoardAveD1012.hpp │ │ │ │ ├── NstBoardAveNina.cpp │ │ │ │ ├── NstBoardAveNina.hpp │ │ │ │ ├── NstBoardAxRom.cpp │ │ │ │ ├── NstBoardAxRom.hpp │ │ │ │ ├── NstBoardBandai.hpp │ │ │ │ ├── NstBoardBandai24c0x.cpp │ │ │ │ ├── NstBoardBandai24c0x.hpp │ │ │ │ ├── NstBoardBandaiAerobicsStudio.cpp │ │ │ │ ├── NstBoardBandaiAerobicsStudio.hpp │ │ │ │ ├── NstBoardBandaiDatach.cpp │ │ │ │ ├── NstBoardBandaiDatach.hpp │ │ │ │ ├── NstBoardBandaiKaraokeStudio.cpp │ │ │ │ ├── NstBoardBandaiKaraokeStudio.hpp │ │ │ │ ├── NstBoardBandaiLz93d50.cpp │ │ │ │ ├── NstBoardBandaiLz93d50.hpp │ │ │ │ ├── NstBoardBandaiLz93d50ex.cpp │ │ │ │ ├── NstBoardBandaiLz93d50ex.hpp │ │ │ │ ├── NstBoardBandaiOekaKids.cpp │ │ │ │ ├── NstBoardBandaiOekaKids.hpp │ │ │ │ ├── NstBoardBenshengBs5.cpp │ │ │ │ ├── NstBoardBenshengBs5.hpp │ │ │ │ ├── NstBoardBmc110in1.cpp │ │ │ │ ├── NstBoardBmc110in1.hpp │ │ │ │ ├── NstBoardBmc1200in1.cpp │ │ │ │ ├── NstBoardBmc1200in1.hpp │ │ │ │ ├── NstBoardBmc150in1.cpp │ │ │ │ ├── NstBoardBmc150in1.hpp │ │ │ │ ├── NstBoardBmc15in1.cpp │ │ │ │ ├── NstBoardBmc15in1.hpp │ │ │ │ ├── NstBoardBmc20in1.cpp │ │ │ │ ├── NstBoardBmc20in1.hpp │ │ │ │ ├── NstBoardBmc21in1.cpp │ │ │ │ ├── NstBoardBmc21in1.hpp │ │ │ │ ├── NstBoardBmc22Games.cpp │ │ │ │ ├── NstBoardBmc22Games.hpp │ │ │ │ ├── NstBoardBmc31in1.cpp │ │ │ │ ├── NstBoardBmc31in1.hpp │ │ │ │ ├── NstBoardBmc35in1.cpp │ │ │ │ ├── NstBoardBmc35in1.hpp │ │ │ │ ├── NstBoardBmc36in1.cpp │ │ │ │ ├── NstBoardBmc36in1.hpp │ │ │ │ ├── NstBoardBmc64in1.cpp │ │ │ │ ├── NstBoardBmc64in1.hpp │ │ │ │ ├── NstBoardBmc72in1.cpp │ │ │ │ ├── NstBoardBmc72in1.hpp │ │ │ │ ├── NstBoardBmc76in1.cpp │ │ │ │ ├── NstBoardBmc76in1.hpp │ │ │ │ ├── NstBoardBmc800in1.cpp │ │ │ │ ├── NstBoardBmc800in1.hpp │ │ │ │ ├── NstBoardBmc8157.cpp │ │ │ │ ├── NstBoardBmc8157.hpp │ │ │ │ ├── NstBoardBmc9999999in1.cpp │ │ │ │ ├── NstBoardBmc9999999in1.hpp │ │ │ │ ├── NstBoardBmcA65as.cpp │ │ │ │ ├── NstBoardBmcA65as.hpp │ │ │ │ ├── NstBoardBmcBallgames11in1.cpp │ │ │ │ ├── NstBoardBmcBallgames11in1.hpp │ │ │ │ ├── NstBoardBmcCh001.cpp │ │ │ │ ├── NstBoardBmcCh001.hpp │ │ │ │ ├── NstBoardBmcCtc65.cpp │ │ │ │ ├── NstBoardBmcCtc65.hpp │ │ │ │ ├── NstBoardBmcFamily4646B.cpp │ │ │ │ ├── NstBoardBmcFamily4646B.hpp │ │ │ │ ├── NstBoardBmcFk23c.cpp │ │ │ │ ├── NstBoardBmcFk23c.hpp │ │ │ │ ├── NstBoardBmcGamestarA.cpp │ │ │ │ ├── NstBoardBmcGamestarA.hpp │ │ │ │ ├── NstBoardBmcGamestarB.cpp │ │ │ │ ├── NstBoardBmcGamestarB.hpp │ │ │ │ ├── NstBoardBmcGolden190in1.cpp │ │ │ │ ├── NstBoardBmcGolden190in1.hpp │ │ │ │ ├── NstBoardBmcGoldenCard6in1.cpp │ │ │ │ ├── NstBoardBmcGoldenCard6in1.hpp │ │ │ │ ├── NstBoardBmcGoldenGame260in1.cpp │ │ │ │ ├── NstBoardBmcGoldenGame260in1.hpp │ │ │ │ ├── NstBoardBmcHero.cpp │ │ │ │ ├── NstBoardBmcHero.hpp │ │ │ │ ├── NstBoardBmcMarioParty7in1.cpp │ │ │ │ ├── NstBoardBmcMarioParty7in1.hpp │ │ │ │ ├── NstBoardBmcNovelDiamond.cpp │ │ │ │ ├── NstBoardBmcNovelDiamond.hpp │ │ │ │ ├── NstBoardBmcPowerjoy84in1.cpp │ │ │ │ ├── NstBoardBmcPowerjoy84in1.hpp │ │ │ │ ├── NstBoardBmcResetBased4in1.cpp │ │ │ │ ├── NstBoardBmcResetBased4in1.hpp │ │ │ │ ├── NstBoardBmcSuper22Games.cpp │ │ │ │ ├── NstBoardBmcSuper22Games.hpp │ │ │ │ ├── NstBoardBmcSuper24in1.cpp │ │ │ │ ├── NstBoardBmcSuper24in1.hpp │ │ │ │ ├── NstBoardBmcSuper40in1.cpp │ │ │ │ ├── NstBoardBmcSuper40in1.hpp │ │ │ │ ├── NstBoardBmcSuper700in1.cpp │ │ │ │ ├── NstBoardBmcSuper700in1.hpp │ │ │ │ ├── NstBoardBmcSuperBig7in1.cpp │ │ │ │ ├── NstBoardBmcSuperBig7in1.hpp │ │ │ │ ├── NstBoardBmcSuperGun20in1.cpp │ │ │ │ ├── NstBoardBmcSuperGun20in1.hpp │ │ │ │ ├── NstBoardBmcSuperHiK300in1.cpp │ │ │ │ ├── NstBoardBmcSuperHiK300in1.hpp │ │ │ │ ├── NstBoardBmcSuperHiK4in1.cpp │ │ │ │ ├── NstBoardBmcSuperHiK4in1.hpp │ │ │ │ ├── NstBoardBmcSuperVision16in1.cpp │ │ │ │ ├── NstBoardBmcSuperVision16in1.hpp │ │ │ │ ├── NstBoardBmcT262.cpp │ │ │ │ ├── NstBoardBmcT262.hpp │ │ │ │ ├── NstBoardBmcVrc4.cpp │ │ │ │ ├── NstBoardBmcVrc4.hpp │ │ │ │ ├── NstBoardBmcVt5201.cpp │ │ │ │ ├── NstBoardBmcVt5201.hpp │ │ │ │ ├── NstBoardBmcY2k64in1.cpp │ │ │ │ ├── NstBoardBmcY2k64in1.hpp │ │ │ │ ├── NstBoardBtl2708.cpp │ │ │ │ ├── NstBoardBtl2708.hpp │ │ │ │ ├── NstBoardBtl6035052.cpp │ │ │ │ ├── NstBoardBtl6035052.hpp │ │ │ │ ├── NstBoardBtlAx5705.cpp │ │ │ │ ├── NstBoardBtlAx5705.hpp │ │ │ │ ├── NstBoardBtlDragonNinja.cpp │ │ │ │ ├── NstBoardBtlDragonNinja.hpp │ │ │ │ ├── NstBoardBtlGeniusMerioBros.cpp │ │ │ │ ├── NstBoardBtlGeniusMerioBros.hpp │ │ │ │ ├── NstBoardBtlMarioBaby.cpp │ │ │ │ ├── NstBoardBtlMarioBaby.hpp │ │ │ │ ├── NstBoardBtlPikachuY2k.cpp │ │ │ │ ├── NstBoardBtlPikachuY2k.hpp │ │ │ │ ├── NstBoardBtlShuiGuanPipe.cpp │ │ │ │ ├── NstBoardBtlShuiGuanPipe.hpp │ │ │ │ ├── NstBoardBtlSmb2a.cpp │ │ │ │ ├── NstBoardBtlSmb2a.hpp │ │ │ │ ├── NstBoardBtlSmb2b.cpp │ │ │ │ ├── NstBoardBtlSmb2b.hpp │ │ │ │ ├── NstBoardBtlSmb2c.cpp │ │ │ │ ├── NstBoardBtlSmb2c.hpp │ │ │ │ ├── NstBoardBtlSmb3.cpp │ │ │ │ ├── NstBoardBtlSmb3.hpp │ │ │ │ ├── NstBoardBtlSuperBros11.cpp │ │ │ │ ├── NstBoardBtlSuperBros11.hpp │ │ │ │ ├── NstBoardBtlT230.cpp │ │ │ │ ├── NstBoardBtlT230.hpp │ │ │ │ ├── NstBoardBtlTobidaseDaisakusen.cpp │ │ │ │ ├── NstBoardBtlTobidaseDaisakusen.hpp │ │ │ │ ├── NstBoardBxRom.cpp │ │ │ │ ├── NstBoardBxRom.hpp │ │ │ │ ├── NstBoardCaltron.cpp │ │ │ │ ├── NstBoardCaltron.hpp │ │ │ │ ├── NstBoardCamerica.cpp │ │ │ │ ├── NstBoardCamerica.hpp │ │ │ │ ├── NstBoardCne.hpp │ │ │ │ ├── NstBoardCneDecathlon.cpp │ │ │ │ ├── NstBoardCneDecathlon.hpp │ │ │ │ ├── NstBoardCnePsb.cpp │ │ │ │ ├── NstBoardCnePsb.hpp │ │ │ │ ├── NstBoardCneShlz.cpp │ │ │ │ ├── NstBoardCneShlz.hpp │ │ │ │ ├── NstBoardCony.cpp │ │ │ │ ├── NstBoardCony.hpp │ │ │ │ ├── NstBoardCxRom.cpp │ │ │ │ ├── NstBoardCxRom.hpp │ │ │ │ ├── NstBoardDiscrete.cpp │ │ │ │ ├── NstBoardDiscrete.hpp │ │ │ │ ├── NstBoardDreamtech.cpp │ │ │ │ ├── NstBoardDreamtech.hpp │ │ │ │ ├── NstBoardDxRom.hpp │ │ │ │ ├── NstBoardEvent.cpp │ │ │ │ ├── NstBoardEvent.hpp │ │ │ │ ├── NstBoardExRom.hpp │ │ │ │ ├── NstBoardFb.cpp │ │ │ │ ├── NstBoardFb.hpp │ │ │ │ ├── NstBoardFfe.cpp │ │ │ │ ├── NstBoardFfe.hpp │ │ │ │ ├── NstBoardFujiya.cpp │ │ │ │ ├── NstBoardFujiya.hpp │ │ │ │ ├── NstBoardFukutake.cpp │ │ │ │ ├── NstBoardFukutake.hpp │ │ │ │ ├── NstBoardFutureMedia.cpp │ │ │ │ ├── NstBoardFutureMedia.hpp │ │ │ │ ├── NstBoardFxRom.hpp │ │ │ │ ├── NstBoardGouder.cpp │ │ │ │ ├── NstBoardGouder.hpp │ │ │ │ ├── NstBoardGxRom.cpp │ │ │ │ ├── NstBoardGxRom.hpp │ │ │ │ ├── NstBoardHenggedianzi.cpp │ │ │ │ ├── NstBoardHenggedianzi.hpp │ │ │ │ ├── NstBoardHes.cpp │ │ │ │ ├── NstBoardHes.hpp │ │ │ │ ├── NstBoardHosenkan.cpp │ │ │ │ ├── NstBoardHosenkan.hpp │ │ │ │ ├── NstBoardHxRom.hpp │ │ │ │ ├── NstBoardInlNsf.cpp │ │ │ │ ├── NstBoardInlNsf.hpp │ │ │ │ ├── NstBoardIrem.hpp │ │ │ │ ├── NstBoardIremG101.cpp │ │ │ │ ├── NstBoardIremG101.hpp │ │ │ │ ├── NstBoardIremH3001.cpp │ │ │ │ ├── NstBoardIremH3001.hpp │ │ │ │ ├── NstBoardIremHolyDiver.cpp │ │ │ │ ├── NstBoardIremHolyDiver.hpp │ │ │ │ ├── NstBoardIremKaiketsu.cpp │ │ │ │ ├── NstBoardIremKaiketsu.hpp │ │ │ │ ├── NstBoardIremLrog017.cpp │ │ │ │ ├── NstBoardIremLrog017.hpp │ │ │ │ ├── NstBoardJaleco.hpp │ │ │ │ ├── NstBoardJalecoJf11.cpp │ │ │ │ ├── NstBoardJalecoJf11.hpp │ │ │ │ ├── NstBoardJalecoJf13.cpp │ │ │ │ ├── NstBoardJalecoJf13.hpp │ │ │ │ ├── NstBoardJalecoJf16.cpp │ │ │ │ ├── NstBoardJalecoJf16.hpp │ │ │ │ ├── NstBoardJalecoJf17.cpp │ │ │ │ ├── NstBoardJalecoJf17.hpp │ │ │ │ ├── NstBoardJalecoJf19.cpp │ │ │ │ ├── NstBoardJalecoJf19.hpp │ │ │ │ ├── NstBoardJalecoSs88006.cpp │ │ │ │ ├── NstBoardJalecoSs88006.hpp │ │ │ │ ├── NstBoardJxRom.hpp │ │ │ │ ├── NstBoardJyCompany.cpp │ │ │ │ ├── NstBoardJyCompany.hpp │ │ │ │ ├── NstBoardKaiser.cpp │ │ │ │ ├── NstBoardKaiser.hpp │ │ │ │ ├── NstBoardKasing.cpp │ │ │ │ ├── NstBoardKasing.hpp │ │ │ │ ├── NstBoardKay.hpp │ │ │ │ ├── NstBoardKayH2288.cpp │ │ │ │ ├── NstBoardKayH2288.hpp │ │ │ │ ├── NstBoardKayPandaPrince.cpp │ │ │ │ ├── NstBoardKayPandaPrince.hpp │ │ │ │ ├── NstBoardKonami.hpp │ │ │ │ ├── NstBoardKonamiVrc1.cpp │ │ │ │ ├── NstBoardKonamiVrc1.hpp │ │ │ │ ├── NstBoardKonamiVrc2.cpp │ │ │ │ ├── NstBoardKonamiVrc2.hpp │ │ │ │ ├── NstBoardKonamiVrc3.cpp │ │ │ │ ├── NstBoardKonamiVrc3.hpp │ │ │ │ ├── NstBoardKonamiVrc4.cpp │ │ │ │ ├── NstBoardKonamiVrc4.hpp │ │ │ │ ├── NstBoardKonamiVrc6.cpp │ │ │ │ ├── NstBoardKonamiVrc6.hpp │ │ │ │ ├── NstBoardKonamiVrc7.cpp │ │ │ │ ├── NstBoardKonamiVrc7.hpp │ │ │ │ ├── NstBoardKonamiVsSystem.cpp │ │ │ │ ├── NstBoardKonamiVsSystem.hpp │ │ │ │ ├── NstBoardMagicKidGoogoo.cpp │ │ │ │ ├── NstBoardMagicKidGoogoo.hpp │ │ │ │ ├── NstBoardMagicSeries.cpp │ │ │ │ ├── NstBoardMagicSeries.hpp │ │ │ │ ├── NstBoardMmc1.cpp │ │ │ │ ├── NstBoardMmc1.hpp │ │ │ │ ├── NstBoardMmc2.cpp │ │ │ │ ├── NstBoardMmc2.hpp │ │ │ │ ├── NstBoardMmc3.cpp │ │ │ │ ├── NstBoardMmc3.hpp │ │ │ │ ├── NstBoardMmc4.cpp │ │ │ │ ├── NstBoardMmc4.hpp │ │ │ │ ├── NstBoardMmc5.cpp │ │ │ │ ├── NstBoardMmc5.hpp │ │ │ │ ├── NstBoardMmc6.cpp │ │ │ │ ├── NstBoardMmc6.hpp │ │ │ │ ├── NstBoardMxRom.hpp │ │ │ │ ├── NstBoardNRom.hpp │ │ │ │ ├── NstBoardNamcot.hpp │ │ │ │ ├── NstBoardNamcot163.cpp │ │ │ │ ├── NstBoardNamcot163.hpp │ │ │ │ ├── NstBoardNamcot175.cpp │ │ │ │ ├── NstBoardNamcot175.hpp │ │ │ │ ├── NstBoardNamcot340.cpp │ │ │ │ ├── NstBoardNamcot340.hpp │ │ │ │ ├── NstBoardNamcot34xx.cpp │ │ │ │ ├── NstBoardNamcot34xx.hpp │ │ │ │ ├── NstBoardNanjing.cpp │ │ │ │ ├── NstBoardNanjing.hpp │ │ │ │ ├── NstBoardNihon.cpp │ │ │ │ ├── NstBoardNihon.hpp │ │ │ │ ├── NstBoardNitra.cpp │ │ │ │ ├── NstBoardNitra.hpp │ │ │ │ ├── NstBoardNtdec.cpp │ │ │ │ ├── NstBoardNtdec.hpp │ │ │ │ ├── NstBoardNxRom.hpp │ │ │ │ ├── NstBoardOpenCorp.cpp │ │ │ │ ├── NstBoardOpenCorp.hpp │ │ │ │ ├── NstBoardPxRom.hpp │ │ │ │ ├── NstBoardQj.cpp │ │ │ │ ├── NstBoardQj.hpp │ │ │ │ ├── NstBoardRcm.cpp │ │ │ │ ├── NstBoardRcm.hpp │ │ │ │ ├── NstBoardRexSoft.hpp │ │ │ │ ├── NstBoardRexSoftDb5z.cpp │ │ │ │ ├── NstBoardRexSoftDb5z.hpp │ │ │ │ ├── NstBoardRexSoftSl1632.cpp │ │ │ │ ├── NstBoardRexSoftSl1632.hpp │ │ │ │ ├── NstBoardRumbleStation.cpp │ │ │ │ ├── NstBoardRumbleStation.hpp │ │ │ │ ├── NstBoardSachen.hpp │ │ │ │ ├── NstBoardSachen74x374.cpp │ │ │ │ ├── NstBoardSachen74x374.hpp │ │ │ │ ├── NstBoardSachenS8259.cpp │ │ │ │ ├── NstBoardSachenS8259.hpp │ │ │ │ ├── NstBoardSachenSa0036.cpp │ │ │ │ ├── NstBoardSachenSa0036.hpp │ │ │ │ ├── NstBoardSachenSa0037.cpp │ │ │ │ ├── NstBoardSachenSa0037.hpp │ │ │ │ ├── NstBoardSachenSa72007.cpp │ │ │ │ ├── NstBoardSachenSa72007.hpp │ │ │ │ ├── NstBoardSachenSa72008.cpp │ │ │ │ ├── NstBoardSachenSa72008.hpp │ │ │ │ ├── NstBoardSachenStreetHeroes.cpp │ │ │ │ ├── NstBoardSachenStreetHeroes.hpp │ │ │ │ ├── NstBoardSachenTca01.cpp │ │ │ │ ├── NstBoardSachenTca01.hpp │ │ │ │ ├── NstBoardSachenTcu.cpp │ │ │ │ ├── NstBoardSachenTcu.hpp │ │ │ │ ├── NstBoardSomeriTeam.hpp │ │ │ │ ├── NstBoardSomeriTeamSl12.cpp │ │ │ │ ├── NstBoardSomeriTeamSl12.hpp │ │ │ │ ├── NstBoardSubor.cpp │ │ │ │ ├── NstBoardSubor.hpp │ │ │ │ ├── NstBoardSunsoft.hpp │ │ │ │ ├── NstBoardSunsoft1.cpp │ │ │ │ ├── NstBoardSunsoft1.hpp │ │ │ │ ├── NstBoardSunsoft2.cpp │ │ │ │ ├── NstBoardSunsoft2.hpp │ │ │ │ ├── NstBoardSunsoft3.cpp │ │ │ │ ├── NstBoardSunsoft3.hpp │ │ │ │ ├── NstBoardSunsoft4.cpp │ │ │ │ ├── NstBoardSunsoft4.hpp │ │ │ │ ├── NstBoardSunsoft5b.cpp │ │ │ │ ├── NstBoardSunsoft5b.hpp │ │ │ │ ├── NstBoardSunsoftDcs.cpp │ │ │ │ ├── NstBoardSunsoftDcs.hpp │ │ │ │ ├── NstBoardSunsoftFme7.cpp │ │ │ │ ├── NstBoardSunsoftFme7.hpp │ │ │ │ ├── NstBoardSuperGame.hpp │ │ │ │ ├── NstBoardSuperGameBoogerman.cpp │ │ │ │ ├── NstBoardSuperGameBoogerman.hpp │ │ │ │ ├── NstBoardSuperGameLionKing.cpp │ │ │ │ ├── NstBoardSuperGameLionKing.hpp │ │ │ │ ├── NstBoardSuperGamePocahontas2.cpp │ │ │ │ ├── NstBoardSuperGamePocahontas2.hpp │ │ │ │ ├── NstBoardSxRom.hpp │ │ │ │ ├── NstBoardTaito.hpp │ │ │ │ ├── NstBoardTaitoTc0190fmc.cpp │ │ │ │ ├── NstBoardTaitoTc0190fmc.hpp │ │ │ │ ├── NstBoardTaitoTc0190fmcPal16r4.cpp │ │ │ │ ├── NstBoardTaitoTc0190fmcPal16r4.hpp │ │ │ │ ├── NstBoardTaitoX1005.cpp │ │ │ │ ├── NstBoardTaitoX1005.hpp │ │ │ │ ├── NstBoardTaitoX1017.cpp │ │ │ │ ├── NstBoardTaitoX1017.hpp │ │ │ │ ├── NstBoardTengen.cpp │ │ │ │ ├── NstBoardTengen.hpp │ │ │ │ ├── NstBoardTengenRambo1.cpp │ │ │ │ ├── NstBoardTengenRambo1.hpp │ │ │ │ ├── NstBoardTxRom.cpp │ │ │ │ ├── NstBoardTxRom.hpp │ │ │ │ ├── NstBoardTxc.cpp │ │ │ │ ├── NstBoardTxc.hpp │ │ │ │ ├── NstBoardTxcMxmdhtwo.cpp │ │ │ │ ├── NstBoardTxcMxmdhtwo.hpp │ │ │ │ ├── NstBoardTxcPoliceman.cpp │ │ │ │ ├── NstBoardTxcPoliceman.hpp │ │ │ │ ├── NstBoardTxcTw.cpp │ │ │ │ ├── NstBoardTxcTw.hpp │ │ │ │ ├── NstBoardUnlA9746.cpp │ │ │ │ ├── NstBoardUnlA9746.hpp │ │ │ │ ├── NstBoardUnlCc21.cpp │ │ │ │ ├── NstBoardUnlCc21.hpp │ │ │ │ ├── NstBoardUnlEdu2000.cpp │ │ │ │ ├── NstBoardUnlEdu2000.hpp │ │ │ │ ├── NstBoardUnlKingOfFighters96.cpp │ │ │ │ ├── NstBoardUnlKingOfFighters96.hpp │ │ │ │ ├── NstBoardUnlKingOfFighters97.cpp │ │ │ │ ├── NstBoardUnlKingOfFighters97.hpp │ │ │ │ ├── NstBoardUnlMortalKombat2.cpp │ │ │ │ ├── NstBoardUnlMortalKombat2.hpp │ │ │ │ ├── NstBoardUnlN625092.cpp │ │ │ │ ├── NstBoardUnlN625092.hpp │ │ │ │ ├── NstBoardUnlSuperFighter3.cpp │ │ │ │ ├── NstBoardUnlSuperFighter3.hpp │ │ │ │ ├── NstBoardUnlTf1201.cpp │ │ │ │ ├── NstBoardUnlTf1201.hpp │ │ │ │ ├── NstBoardUnlWorldHero.cpp │ │ │ │ ├── NstBoardUnlWorldHero.hpp │ │ │ │ ├── NstBoardUnlXzy.cpp │ │ │ │ ├── NstBoardUnlXzy.hpp │ │ │ │ ├── NstBoardUxRom.cpp │ │ │ │ ├── NstBoardUxRom.hpp │ │ │ │ ├── NstBoardVsSystem.cpp │ │ │ │ ├── NstBoardVsSystem.hpp │ │ │ │ ├── NstBoardWaixing.cpp │ │ │ │ ├── NstBoardWaixing.hpp │ │ │ │ ├── NstBoardWaixingFfv.cpp │ │ │ │ ├── NstBoardWaixingFfv.hpp │ │ │ │ ├── NstBoardWaixingFs304.cpp │ │ │ │ ├── NstBoardWaixingFs304.hpp │ │ │ │ ├── NstBoardWaixingPs2.cpp │ │ │ │ ├── NstBoardWaixingPs2.hpp │ │ │ │ ├── NstBoardWaixingSecurity.cpp │ │ │ │ ├── NstBoardWaixingSecurity.hpp │ │ │ │ ├── NstBoardWaixingSgz.cpp │ │ │ │ ├── NstBoardWaixingSgz.hpp │ │ │ │ ├── NstBoardWaixingSgzlz.cpp │ │ │ │ ├── NstBoardWaixingSgzlz.hpp │ │ │ │ ├── NstBoardWaixingSh2.cpp │ │ │ │ ├── NstBoardWaixingSh2.hpp │ │ │ │ ├── NstBoardWaixingZs.cpp │ │ │ │ ├── NstBoardWaixingZs.hpp │ │ │ │ ├── NstBoardWhirlwind.cpp │ │ │ │ ├── NstBoardWhirlwind.hpp │ │ │ │ ├── NstBoardZz.cpp │ │ │ │ └── NstBoardZz.hpp │ │ │ ├── input │ │ │ │ ├── NstInpAdapter.cpp │ │ │ │ ├── NstInpAdapter.hpp │ │ │ │ ├── NstInpBandaiHyperShot.cpp │ │ │ │ ├── NstInpBandaiHyperShot.hpp │ │ │ │ ├── NstInpBarcodeWorld.cpp │ │ │ │ ├── NstInpBarcodeWorld.hpp │ │ │ │ ├── NstInpCrazyClimber.cpp │ │ │ │ ├── NstInpCrazyClimber.hpp │ │ │ │ ├── NstInpDevice.hpp │ │ │ │ ├── NstInpDoremikkoKeyboard.cpp │ │ │ │ ├── NstInpDoremikkoKeyboard.hpp │ │ │ │ ├── NstInpExcitingBoxing.cpp │ │ │ │ ├── NstInpExcitingBoxing.hpp │ │ │ │ ├── NstInpFamilyKeyboard.cpp │ │ │ │ ├── NstInpFamilyKeyboard.hpp │ │ │ │ ├── NstInpFamilyTrainer.cpp │ │ │ │ ├── NstInpFamilyTrainer.hpp │ │ │ │ ├── NstInpHoriTrack.cpp │ │ │ │ ├── NstInpHoriTrack.hpp │ │ │ │ ├── NstInpKonamiHyperShot.cpp │ │ │ │ ├── NstInpKonamiHyperShot.hpp │ │ │ │ ├── NstInpMahjong.cpp │ │ │ │ ├── NstInpMahjong.hpp │ │ │ │ ├── NstInpMouse.cpp │ │ │ │ ├── NstInpMouse.hpp │ │ │ │ ├── NstInpOekaKidsTablet.cpp │ │ │ │ ├── NstInpOekaKidsTablet.hpp │ │ │ │ ├── NstInpPachinko.cpp │ │ │ │ ├── NstInpPachinko.hpp │ │ │ │ ├── NstInpPad.cpp │ │ │ │ ├── NstInpPad.hpp │ │ │ │ ├── NstInpPaddle.cpp │ │ │ │ ├── NstInpPaddle.hpp │ │ │ │ ├── NstInpPartyTap.cpp │ │ │ │ ├── NstInpPartyTap.hpp │ │ │ │ ├── NstInpPokkunMoguraa.cpp │ │ │ │ ├── NstInpPokkunMoguraa.hpp │ │ │ │ ├── NstInpPowerGlove.cpp │ │ │ │ ├── NstInpPowerGlove.hpp │ │ │ │ ├── NstInpPowerPad.cpp │ │ │ │ ├── NstInpPowerPad.hpp │ │ │ │ ├── NstInpRob.cpp │ │ │ │ ├── NstInpRob.hpp │ │ │ │ ├── NstInpSuborKeyboard.cpp │ │ │ │ ├── NstInpSuborKeyboard.hpp │ │ │ │ ├── NstInpTopRider.cpp │ │ │ │ ├── NstInpTopRider.hpp │ │ │ │ ├── NstInpTurboFile.cpp │ │ │ │ ├── NstInpTurboFile.hpp │ │ │ │ ├── NstInpZapper.cpp │ │ │ │ └── NstInpZapper.hpp │ │ │ └── vssystem │ │ │ │ ├── NstVsRbiBaseball.cpp │ │ │ │ ├── NstVsRbiBaseball.hpp │ │ │ │ ├── NstVsSuperXevious.cpp │ │ │ │ ├── NstVsSuperXevious.hpp │ │ │ │ ├── NstVsSystem.cpp │ │ │ │ ├── NstVsSystem.hpp │ │ │ │ ├── NstVsTkoBoxing.cpp │ │ │ │ └── NstVsTkoBoxing.hpp │ │ ├── nes_ntsc │ │ │ ├── changes.txt │ │ │ ├── demo_impl.h │ │ │ ├── license.txt │ │ │ ├── nes_ntsc.h │ │ │ ├── nes_ntsc.inl │ │ │ ├── nes_ntsc.txt │ │ │ ├── nes_ntsc_config.h │ │ │ ├── nes_ntsc_impl.h │ │ │ ├── readme.txt │ │ │ ├── test.bmp │ │ │ └── tests │ │ │ │ ├── 1.line_phase.nes │ │ │ │ ├── 2.frame_phase.nes │ │ │ │ └── 3.special_frame_phase.nes │ │ └── sdl │ │ │ ├── nstcursor.cpp │ │ │ └── nstcursor.h │ └── vice │ │ ├── ViceInterface │ │ ├── Adapters │ │ │ ├── CDataAdapterViceC64.cpp │ │ │ ├── CDataAdapterViceC64.h │ │ │ ├── CDataAdapterViceC64Cartridge.cpp │ │ │ ├── CDataAdapterViceC64Cartridge.h │ │ │ ├── CDataAdapterViceC64DirectRam.cpp │ │ │ ├── CDataAdapterViceC64DirectRam.h │ │ │ ├── CDataAdapterViceC64Reu.cpp │ │ │ ├── CDataAdapterViceC64Reu.h │ │ │ ├── CDataAdapterViceDrive1541.cpp │ │ │ ├── CDataAdapterViceDrive1541.h │ │ │ ├── CDataAdapterViceDrive1541DirectRam.cpp │ │ │ ├── CDataAdapterViceDrive1541DirectRam.h │ │ │ ├── CDataAdapterViceDrive1541DiskContents.cpp │ │ │ ├── CDataAdapterViceDrive1541DiskContents.h │ │ │ ├── CDataAddressEditBoxDiskContents.cpp │ │ │ └── CDataAddressEditBoxDiskContents.h │ │ ├── CAudioChannelVice.cpp │ │ ├── CAudioChannelVice.h │ │ ├── CDataAdaptersVice.cpp │ │ ├── CDataAdaptersVice.h │ │ ├── CDebugInterfaceVice.cpp │ │ ├── CDebugInterfaceVice.h │ │ ├── CDebuggerApiVice.cpp │ │ ├── CDebuggerApiVice.h │ │ ├── CDebuggerEmulatorPluginVice.cpp │ │ ├── CDebuggerEmulatorPluginVice.h │ │ ├── CDebuggerServerApiVice.cpp │ │ ├── CDebuggerServerApiVice.h │ │ ├── ViceLogWrapper.cpp │ │ ├── ViceLogWrapper.h │ │ ├── ViceWrapper.cpp │ │ └── ViceWrapper.h │ │ ├── arch │ │ ├── archdep_unix.h │ │ ├── blockdev.c │ │ ├── c64-hardsid.c │ │ ├── catweaselmkiii.c │ │ ├── console.c │ │ ├── coproc.c │ │ ├── coproc.h │ │ ├── dynlib.c │ │ ├── fullscreen.c │ │ ├── fullscreenarch.h │ │ ├── joy.c │ │ ├── joy.h │ │ ├── kbd.c │ │ ├── kbd.h │ │ ├── lightpendrv.c │ │ ├── lightpendrv.h │ │ ├── menu_c64_common_expansions.c │ │ ├── menu_c64_common_expansions.h │ │ ├── menu_c64_expansions.c │ │ ├── menu_c64_expansions.h │ │ ├── menu_c64cart.c │ │ ├── menu_c64cart.h │ │ ├── menu_c64hw.c │ │ ├── menu_c64hw.h │ │ ├── menu_c64model.c │ │ ├── menu_c64model.h │ │ ├── menu_common.c │ │ ├── menu_common.h │ │ ├── menu_debug.c │ │ ├── menu_debug.h │ │ ├── menu_drive.c │ │ ├── menu_drive.h │ │ ├── menu_drive_rom.c │ │ ├── menu_drive_rom.h │ │ ├── menu_ffmpeg.c │ │ ├── menu_ffmpeg.h │ │ ├── menu_help.c │ │ ├── menu_help.h │ │ ├── menu_joystick.c │ │ ├── menu_joystick.h │ │ ├── menu_lightpen.c │ │ ├── menu_lightpen.h │ │ ├── menu_midi.c │ │ ├── menu_midi.h │ │ ├── menu_mouse.c │ │ ├── menu_mouse.h │ │ ├── menu_network.c │ │ ├── menu_network.h │ │ ├── menu_printer.c │ │ ├── menu_printer.h │ │ ├── menu_ram.c │ │ ├── menu_ram.h │ │ ├── menu_reset.c │ │ ├── menu_reset.h │ │ ├── menu_rom.c │ │ ├── menu_rom.h │ │ ├── menu_rs232.c │ │ ├── menu_rs232.h │ │ ├── menu_screenshot.c │ │ ├── menu_screenshot.h │ │ ├── menu_settings.c │ │ ├── menu_settings.h │ │ ├── menu_sid.c │ │ ├── menu_sid.h │ │ ├── menu_snapshot.c │ │ ├── menu_snapshot.h │ │ ├── menu_sound.c │ │ ├── menu_sound.h │ │ ├── menu_speed.c │ │ ├── menu_speed.h │ │ ├── menu_tape.c │ │ ├── menu_tape.h │ │ ├── menu_tfe.c │ │ ├── menu_tfe.h │ │ ├── menu_vic20cart.c │ │ ├── menu_vic20cart.h │ │ ├── menu_vic20hw.c │ │ ├── menu_vic20hw.h │ │ ├── menu_video.c │ │ ├── menu_video.h │ │ ├── mousedrv.c │ │ ├── mousedrv.h │ │ ├── parsid.c │ │ ├── rawnetarch.c │ │ ├── rs232.c │ │ ├── rs232dev.c │ │ ├── rs232dev.h │ │ ├── rs232net.c │ │ ├── rs232net.h │ │ ├── signals.c │ │ ├── socketimpl.h │ │ ├── ui.c │ │ ├── ui.h │ │ ├── uicmdline.c │ │ ├── uifilereq.c │ │ ├── uifilereq.h │ │ ├── uihotkey.c │ │ ├── uihotkey.h │ │ ├── uimenu.c │ │ ├── uimenu.h │ │ ├── uimon.c │ │ ├── uimsgbox.c │ │ ├── uimsgbox.h │ │ ├── uipause.c │ │ ├── uipoll.c │ │ ├── uipoll.h │ │ ├── uistatusbar.c │ │ ├── uistatusbar.h │ │ ├── vicetypes.h │ │ ├── video.c │ │ ├── videoarch.h │ │ ├── vkbd.c │ │ ├── vkbd.h │ │ ├── vsidui_sdl.h │ │ ├── vsyncarch.c │ │ └── x64sc_ui.c │ │ ├── c64 │ │ ├── c64-cmdline-options.c │ │ ├── c64-cmdline-options.h │ │ ├── c64-memory-hacks.c │ │ ├── c64-memory-hacks.h │ │ ├── c64-resources.c │ │ ├── c64-resources.h │ │ ├── c64-snapshot.c │ │ ├── c64-snapshot.h │ │ ├── c64.c │ │ ├── c64.h │ │ ├── c64_256k.c │ │ ├── c64_256k.h │ │ ├── c64bus.c │ │ ├── c64cart.h │ │ ├── c64cia.h │ │ ├── c64cia1.c │ │ ├── c64cia2.c │ │ ├── c64cpusc.c │ │ ├── c64datasette.c │ │ ├── c64drive.c │ │ ├── c64embedded.c │ │ ├── c64export.c │ │ ├── c64fastiec.c │ │ ├── c64fastiec.h │ │ ├── c64gluelogic.c │ │ ├── c64gluelogic.h │ │ ├── c64iec.c │ │ ├── c64iec.h │ │ ├── c64io.c │ │ ├── c64keyboard.c │ │ ├── c64keyboard.h │ │ ├── c64mem.h │ │ ├── c64meminit.c │ │ ├── c64meminit.h │ │ ├── c64memlimit.c │ │ ├── c64memlimit.h │ │ ├── c64memrom.c │ │ ├── c64memrom.h │ │ ├── c64memsc.c │ │ ├── c64memsnapshot.c │ │ ├── c64memsnapshot.h │ │ ├── c64model.h │ │ ├── c64parallel.c │ │ ├── c64parallel.h │ │ ├── c64pla.c │ │ ├── c64pla.h │ │ ├── c64printer.c │ │ ├── c64rom.c │ │ ├── c64rom.h │ │ ├── c64romset.c │ │ ├── c64rsuser.c │ │ ├── c64rsuser.h │ │ ├── c64scmodel.c │ │ ├── c64sound.c │ │ ├── c64video.c │ │ ├── cart │ │ │ ├── actionreplay.c │ │ │ ├── actionreplay.h │ │ │ ├── actionreplay2.c │ │ │ ├── actionreplay2.h │ │ │ ├── actionreplay3.c │ │ │ ├── actionreplay3.h │ │ │ ├── actionreplay4.c │ │ │ ├── actionreplay4.h │ │ │ ├── atomicpower.c │ │ │ ├── atomicpower.h │ │ │ ├── c64-generic.c │ │ │ ├── c64-generic.h │ │ │ ├── c64-midi.c │ │ │ ├── c64-midi.h │ │ │ ├── c64acia.h │ │ │ ├── c64acia1.c │ │ │ ├── c64cart.c │ │ │ ├── c64carthooks.c │ │ │ ├── c64cartmem.c │ │ │ ├── c64cartmem.h │ │ │ ├── c64cartsystem.h │ │ │ ├── c64tpi.c │ │ │ ├── c64tpi.h │ │ │ ├── capture.c │ │ │ ├── capture.h │ │ │ ├── clockport-mp3at64.c │ │ │ ├── clockport-mp3at64.h │ │ │ ├── clockport-rrnet.c │ │ │ ├── clockport-rrnet.h │ │ │ ├── clockport.c │ │ │ ├── clockport.h │ │ │ ├── comal80.c │ │ │ ├── comal80.h │ │ │ ├── cpmcart.c │ │ │ ├── cpmcart.h │ │ │ ├── crt.c │ │ │ ├── crt.h │ │ │ ├── cs8900io.c │ │ │ ├── cs8900io.h │ │ │ ├── daa.c │ │ │ ├── daa.h │ │ │ ├── debugcart.c │ │ │ ├── debugcart.h │ │ │ ├── delaep256.c │ │ │ ├── delaep256.h │ │ │ ├── delaep64.c │ │ │ ├── delaep64.h │ │ │ ├── delaep7x8.c │ │ │ ├── delaep7x8.h │ │ │ ├── diashowmaker.c │ │ │ ├── diashowmaker.h │ │ │ ├── digimax.c │ │ │ ├── digimax.h │ │ │ ├── dinamic.c │ │ │ ├── dinamic.h │ │ │ ├── dqbb.c │ │ │ ├── dqbb.h │ │ │ ├── ds12c887rtc.c │ │ │ ├── ds12c887rtc.h │ │ │ ├── easycalc.c │ │ │ ├── easycalc.h │ │ │ ├── easyflash.c │ │ │ ├── easyflash.h │ │ │ ├── epyxfastload.c │ │ │ ├── epyxfastload.h │ │ │ ├── ethernetcart.c │ │ │ ├── ethernetcart.h │ │ │ ├── exos.c │ │ │ ├── exos.h │ │ │ ├── expert.c │ │ │ ├── expert.h │ │ │ ├── final.c │ │ │ ├── final.h │ │ │ ├── final3.c │ │ │ ├── final3.h │ │ │ ├── finalplus.c │ │ │ ├── finalplus.h │ │ │ ├── formel64.c │ │ │ ├── formel64.h │ │ │ ├── freezeframe.c │ │ │ ├── freezeframe.h │ │ │ ├── freezemachine.c │ │ │ ├── freezemachine.h │ │ │ ├── funplay.c │ │ │ ├── funplay.h │ │ │ ├── gamekiller.c │ │ │ ├── gamekiller.h │ │ │ ├── georam.c │ │ │ ├── georam.h │ │ │ ├── gmod2.c │ │ │ ├── gmod2.h │ │ │ ├── gs.c │ │ │ ├── gs.h │ │ │ ├── ide64.c │ │ │ ├── ide64.h │ │ │ ├── isepic.c │ │ │ ├── isepic.h │ │ │ ├── kcs.c │ │ │ ├── kcs.h │ │ │ ├── kingsoft.c │ │ │ ├── kingsoft.h │ │ │ ├── mach5.c │ │ │ ├── mach5.h │ │ │ ├── magicdesk.c │ │ │ ├── magicdesk.h │ │ │ ├── magicformel.c │ │ │ ├── magicformel.h │ │ │ ├── magicvoice.c │ │ │ ├── magicvoice.h │ │ │ ├── mikroass.c │ │ │ ├── mikroass.h │ │ │ ├── mmc64.c │ │ │ ├── mmc64.h │ │ │ ├── mmcreplay.c │ │ │ ├── mmcreplay.h │ │ │ ├── ocean.c │ │ │ ├── ocean.h │ │ │ ├── pagefox.c │ │ │ ├── pagefox.h │ │ │ ├── prophet64.c │ │ │ ├── prophet64.h │ │ │ ├── ramcart.c │ │ │ ├── ramcart.h │ │ │ ├── retroreplay.c │ │ │ ├── retroreplay.h │ │ │ ├── reu.c │ │ │ ├── reu.h │ │ │ ├── rexep256.c │ │ │ ├── rexep256.h │ │ │ ├── rexutility.c │ │ │ ├── rexutility.h │ │ │ ├── rgcd.c │ │ │ ├── rgcd.h │ │ │ ├── ross.c │ │ │ ├── ross.h │ │ │ ├── rrnetmk3.c │ │ │ ├── rrnetmk3.h │ │ │ ├── sfx_soundexpander.c │ │ │ ├── sfx_soundexpander.h │ │ │ ├── sfx_soundsampler.c │ │ │ ├── sfx_soundsampler.h │ │ │ ├── shortbus.c │ │ │ ├── shortbus.h │ │ │ ├── shortbus_digimax.c │ │ │ ├── shortbus_digimax.h │ │ │ ├── shortbus_etfe.c │ │ │ ├── shortbus_etfe.h │ │ │ ├── silverrock128.c │ │ │ ├── silverrock128.h │ │ │ ├── simonsbasic.c │ │ │ ├── simonsbasic.h │ │ │ ├── snapshot64.c │ │ │ ├── snapshot64.h │ │ │ ├── stardos.c │ │ │ ├── stardos.h │ │ │ ├── stb.c │ │ │ ├── stb.h │ │ │ ├── superexplode5.c │ │ │ ├── superexplode5.h │ │ │ ├── supergames.c │ │ │ ├── supergames.h │ │ │ ├── supersnapshot.c │ │ │ ├── supersnapshot.h │ │ │ ├── supersnapshot4.c │ │ │ ├── supersnapshot4.h │ │ │ ├── warpspeed.c │ │ │ ├── warpspeed.h │ │ │ ├── westermann.c │ │ │ ├── westermann.h │ │ │ ├── zaxxon.c │ │ │ └── zaxxon.h │ │ ├── musdrv.h │ │ ├── patchrom.c │ │ ├── patchrom.h │ │ ├── plus256k.c │ │ ├── plus256k.h │ │ ├── plus60k.c │ │ ├── plus60k.h │ │ ├── psid.c │ │ ├── psid.h │ │ ├── psiddrv.h │ │ └── reloc65.c │ │ ├── core │ │ ├── ata.c │ │ ├── ata.h │ │ ├── ciacore.c │ │ ├── ciatimer.c │ │ ├── ciatimer.h │ │ ├── cs8900.c │ │ ├── cs8900.h │ │ ├── flash040core.c │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── m93c86.c │ │ ├── m93c86.h │ │ ├── mc6821core.c │ │ ├── mc6821core.h │ │ ├── riotcore.c │ │ ├── ser-eeprom.c │ │ ├── ser-eeprom.h │ │ ├── spi-sdcard.c │ │ ├── spi-sdcard.h │ │ ├── t6721.c │ │ ├── t6721.h │ │ ├── tpicore.c │ │ └── viacore.c │ │ ├── diag │ │ ├── c64_diag_586220_harness.c │ │ └── c64_diag_586220_harness.h │ │ ├── diskimage │ │ ├── c1541.c │ │ ├── diskimage.c │ │ ├── fsimage-check.c │ │ ├── fsimage-check.h │ │ ├── fsimage-create.c │ │ ├── fsimage-create.h │ │ ├── fsimage-dxx.c │ │ ├── fsimage-dxx.h │ │ ├── fsimage-gcr.c │ │ ├── fsimage-gcr.h │ │ ├── fsimage-p64.c │ │ ├── fsimage-p64.h │ │ ├── fsimage-probe.c │ │ ├── fsimage-probe.h │ │ ├── fsimage.c │ │ ├── fsimage.h │ │ ├── rawimage.c │ │ ├── rawimage.h │ │ ├── realimage.h │ │ └── x64.h │ │ ├── drive │ │ ├── drive-check.c │ │ ├── drive-check.h │ │ ├── drive-cmdline-options.c │ │ ├── drive-cmdline-options.h │ │ ├── drive-overflow.c │ │ ├── drive-overflow.h │ │ ├── drive-resources.c │ │ ├── drive-resources.h │ │ ├── drive-snapshot.c │ │ ├── drive-snapshot.h │ │ ├── drive-sound.c │ │ ├── drive-sound.h │ │ ├── drive-writeprotect.c │ │ ├── drive-writeprotect.h │ │ ├── drive.c │ │ ├── drive.h │ │ ├── drivecpu.c │ │ ├── drivecpu.h │ │ ├── drivecpu65c02.c │ │ ├── drivecpu65c02.h │ │ ├── driveimage.c │ │ ├── driveimage.h │ │ ├── drivemem.c │ │ ├── drivemem.h │ │ ├── driverom.c │ │ ├── driverom.h │ │ ├── drivesync.c │ │ ├── drivesync.h │ │ ├── drivetypes.h │ │ ├── iec-c64exp.h │ │ ├── iec.h │ │ ├── iec │ │ │ ├── c64exp │ │ │ │ ├── c64exp-cmdline-options.c │ │ │ │ ├── c64exp-cmdline-options.h │ │ │ │ ├── c64exp-resources.c │ │ │ │ ├── c64exp-resources.h │ │ │ │ ├── dolphindos3.c │ │ │ │ ├── dolphindos3.h │ │ │ │ ├── iec-c64exp.c │ │ │ │ ├── profdos.c │ │ │ │ ├── profdos.h │ │ │ │ ├── stardos-exp.c │ │ │ │ ├── stardos-exp.h │ │ │ │ ├── supercard.c │ │ │ │ └── supercard.h │ │ │ ├── cia1571d.c │ │ │ ├── cia1581d.c │ │ │ ├── ciad.h │ │ │ ├── fdd.c │ │ │ ├── fdd.h │ │ │ ├── glue1571.c │ │ │ ├── glue1571.h │ │ │ ├── iec-cmdline-options.c │ │ │ ├── iec-cmdline-options.h │ │ │ ├── iec-resources.c │ │ │ ├── iec-resources.h │ │ │ ├── iec.c │ │ │ ├── iecrom.c │ │ │ ├── iecrom.h │ │ │ ├── memiec.c │ │ │ ├── memiec.h │ │ │ ├── pc8477.c │ │ │ ├── pc8477.h │ │ │ ├── via1d1541.c │ │ │ ├── via1d1541.h │ │ │ ├── via4000.c │ │ │ ├── via4000.h │ │ │ ├── wd1770.c │ │ │ └── wd1770.h │ │ ├── iecieee.h │ │ ├── iecieee │ │ │ ├── iecieee.c │ │ │ └── via2d.c │ │ ├── ieee.h │ │ ├── ieee │ │ │ ├── fdc.c │ │ │ ├── fdc.h │ │ │ ├── ieee-cmdline-options.c │ │ │ ├── ieee-cmdline-options.h │ │ │ ├── ieee-resources.c │ │ │ ├── ieee-resources.h │ │ │ ├── ieee.c │ │ │ ├── ieeerom.c │ │ │ ├── ieeerom.h │ │ │ ├── memieee.c │ │ │ ├── memieee.h │ │ │ ├── riot1d.c │ │ │ ├── riot2d.c │ │ │ ├── riotd.h │ │ │ ├── via1d2031.c │ │ │ └── via1d2031.h │ │ ├── rotation.c │ │ ├── rotation.h │ │ ├── tcbm │ │ │ ├── tpid.c │ │ │ └── tpid.h │ │ └── viad.h │ │ ├── fileio │ │ ├── cbmfile.c │ │ ├── cbmfile.h │ │ ├── fileio.c │ │ ├── p00.c │ │ └── p00.h │ │ ├── fsdevice │ │ ├── fsdevice-close.c │ │ ├── fsdevice-close.h │ │ ├── fsdevice-cmdline-options.c │ │ ├── fsdevice-cmdline-options.h │ │ ├── fsdevice-flush.c │ │ ├── fsdevice-flush.h │ │ ├── fsdevice-open.c │ │ ├── fsdevice-open.h │ │ ├── fsdevice-read.c │ │ ├── fsdevice-read.h │ │ ├── fsdevice-resources.c │ │ ├── fsdevice-resources.h │ │ ├── fsdevice-write.c │ │ ├── fsdevice-write.h │ │ ├── fsdevice.c │ │ └── fsdevicetypes.h │ │ ├── gfxoutputdrv │ │ ├── bmpdrv.c │ │ ├── bmpdrv.h │ │ ├── doodledrv.c │ │ ├── doodledrv.h │ │ ├── gfxoutput.c │ │ ├── gifdrv.c │ │ ├── godotdrv.c │ │ ├── godotdrv.h │ │ ├── iffdrv.c │ │ ├── iffdrv.h │ │ ├── jpegdrv.c │ │ ├── jpegdrv.h │ │ ├── koaladrv.c │ │ ├── nativedrv.c │ │ ├── nativedrv.h │ │ ├── pcxdrv.c │ │ ├── pcxdrv.h │ │ ├── ppmdrv.c │ │ └── ppmdrv.h │ │ ├── iecbus │ │ └── iecbus.c │ │ ├── imagecontents │ │ ├── diskcontents-block.c │ │ ├── diskcontents-block.h │ │ ├── diskcontents-iec.c │ │ ├── diskcontents-iec.h │ │ ├── diskcontents.c │ │ ├── diskcontents.h │ │ ├── imagecontents.c │ │ ├── tapecontents.c │ │ └── tapecontents.h │ │ ├── joyport │ │ ├── bbrtc.c │ │ ├── bbrtc.h │ │ ├── cardkey.c │ │ ├── cardkey.h │ │ ├── coplin_keypad.c │ │ ├── coplin_keypad.h │ │ ├── cx21.c │ │ ├── cx21.h │ │ ├── cx85.c │ │ ├── cx85.h │ │ ├── joyport.c │ │ ├── joyport.h │ │ ├── joystick.c │ │ ├── joystick.h │ │ ├── lightpen.c │ │ ├── lightpen.h │ │ ├── mouse.c │ │ ├── mouse.h │ │ ├── paperclip64.c │ │ ├── paperclip64.h │ │ ├── rushware_keypad.c │ │ ├── rushware_keypad.h │ │ ├── sampler2bit.c │ │ ├── sampler2bit.h │ │ ├── sampler4bit.c │ │ ├── sampler4bit.h │ │ ├── script64_dongle.c │ │ ├── script64_dongle.h │ │ ├── vizawrite64_dongle.c │ │ └── vizawrite64_dongle.h │ │ ├── lib │ │ └── p64 │ │ │ ├── p64.c │ │ │ ├── p64.h │ │ │ └── p64config.h │ │ ├── monitor │ │ ├── asm.h │ │ ├── asm6502.c │ │ ├── asm6502dtv.c │ │ ├── asm6809.c │ │ ├── asmR65C02.c │ │ ├── asmz80.c │ │ ├── mon_assemble.h │ │ ├── mon_assemble6502.c │ │ ├── mon_assemble6809.c │ │ ├── mon_assembleR65C02.c │ │ ├── mon_assemblez80.c │ │ ├── mon_breakpoint.c │ │ ├── mon_breakpoint.h │ │ ├── mon_command.c │ │ ├── mon_command.h │ │ ├── mon_disassemble.c │ │ ├── mon_disassemble.h │ │ ├── mon_drive.c │ │ ├── mon_drive.h │ │ ├── mon_file.c │ │ ├── mon_file.h │ │ ├── mon_lex.c │ │ ├── mon_lex.l │ │ ├── mon_memmap.c │ │ ├── mon_memmap.h │ │ ├── mon_memory.c │ │ ├── mon_memory.h │ │ ├── mon_parse.c │ │ ├── mon_parse.h │ │ ├── mon_register.c │ │ ├── mon_register.h │ │ ├── mon_register6502.c │ │ ├── mon_register6502dtv.c │ │ ├── mon_register65816.c │ │ ├── mon_register6809.c │ │ ├── mon_registerR65C02.c │ │ ├── mon_registerz80.c │ │ ├── mon_ui.c │ │ ├── mon_ui.h │ │ ├── mon_util.c │ │ ├── mon_util.h │ │ ├── monitor.c │ │ ├── monitor_network.c │ │ ├── monitor_network.h │ │ └── montypes.h │ │ ├── parallel │ │ ├── parallel-trap.c │ │ ├── parallel-trap.h │ │ └── parallel.c │ │ ├── platform │ │ ├── platform.c │ │ ├── platform.h │ │ ├── platform_amd64_msvc_cpuid.h │ │ ├── platform_amigaos3_runtime_os.c │ │ ├── platform_amigaos4_runtime_os.c │ │ ├── platform_aros_runtime_os.c │ │ ├── platform_beos_runtime_os.c │ │ ├── platform_compiler.h │ │ ├── platform_cpu_type.h │ │ ├── platform_discovery.h │ │ ├── platform_linux_libc_version.h │ │ ├── platform_macosx.c │ │ ├── platform_macosx.h │ │ ├── platform_os2_runtime_os.c │ │ ├── platform_solaris_runtime_os.c │ │ ├── platform_syllable_runtime_os.c │ │ ├── platform_windows_runtime_os.c │ │ ├── platform_x86_gcc_cpuid.h │ │ ├── platform_x86_msvc_cpuid.h │ │ ├── platform_x86_runtime_cpu.c │ │ └── platform_x86_runtime_cpu.h │ │ ├── printerdrv │ │ ├── driver-select.c │ │ ├── driver-select.h │ │ ├── drv-1520.c │ │ ├── drv-1520.h │ │ ├── drv-ascii.c │ │ ├── drv-ascii.h │ │ ├── drv-mps803.c │ │ ├── drv-mps803.h │ │ ├── drv-nl10.c │ │ ├── drv-nl10.h │ │ ├── drv-raw.c │ │ ├── drv-raw.h │ │ ├── interface-serial.c │ │ ├── interface-serial.h │ │ ├── interface-userport.c │ │ ├── interface-userport.h │ │ ├── output-graphics.c │ │ ├── output-graphics.h │ │ ├── output-select.c │ │ ├── output-select.h │ │ ├── output-text.c │ │ ├── output-text.h │ │ ├── output.h │ │ ├── printer-serial.c │ │ ├── printer-userport.c │ │ └── printer.c │ │ ├── raster │ │ ├── raster-cache.c │ │ ├── raster-cache.h │ │ ├── raster-canvas.c │ │ ├── raster-canvas.h │ │ ├── raster-changes.c │ │ ├── raster-changes.h │ │ ├── raster-cmdline-options.c │ │ ├── raster-cmdline-options.h │ │ ├── raster-line-changes-sprite.c │ │ ├── raster-line-changes.c │ │ ├── raster-line.c │ │ ├── raster-line.h │ │ ├── raster-modes.c │ │ ├── raster-modes.h │ │ ├── raster-resources.c │ │ ├── raster-resources.h │ │ ├── raster-sprite-cache.c │ │ ├── raster-sprite-cache.h │ │ ├── raster-sprite-status.c │ │ ├── raster-sprite-status.h │ │ ├── raster-sprite.c │ │ ├── raster-sprite.h │ │ ├── raster.c │ │ └── raster.h │ │ ├── resid-fp │ │ ├── residfp-config.h │ │ ├── residfp-convolve-sse.cpp │ │ ├── residfp-convolve.cpp │ │ ├── residfp-envelope.cpp │ │ ├── residfp-envelope.h │ │ ├── residfp-extfilt.cpp │ │ ├── residfp-extfilt.h │ │ ├── residfp-filter.cpp │ │ ├── residfp-filter.h │ │ ├── residfp-pot.cpp │ │ ├── residfp-pot.h │ │ ├── residfp-sid.cpp │ │ ├── residfp-sid.h │ │ ├── residfp-siddefs-fp.h │ │ ├── residfp-voice.cpp │ │ ├── residfp-voice.h │ │ ├── residfp-wave.cpp │ │ └── residfp-wave.h │ │ ├── resid │ │ ├── resid-config.h │ │ ├── resid-dac.cpp │ │ ├── resid-dac.h │ │ ├── resid-envelope.cpp │ │ ├── resid-envelope.h │ │ ├── resid-extfilt.cpp │ │ ├── resid-extfilt.h │ │ ├── resid-filter.cpp │ │ ├── resid-filter.h │ │ ├── resid-pot.cpp │ │ ├── resid-pot.h │ │ ├── resid-sid.cpp │ │ ├── resid-sid.h │ │ ├── resid-siddefs.h │ │ ├── resid-spline.h │ │ ├── resid-version.cpp │ │ ├── resid-voice.cpp │ │ ├── resid-voice.h │ │ ├── resid-wave.cpp │ │ ├── resid-wave.h │ │ ├── wave6581_PST.h │ │ ├── wave6581_PS_.h │ │ ├── wave6581_P_T.h │ │ ├── wave6581__ST.h │ │ ├── wave8580_PST.h │ │ ├── wave8580_PS_.h │ │ ├── wave8580_P_T.h │ │ └── wave8580__ST.h │ │ ├── root │ │ ├── 6510core.h │ │ ├── acia.h │ │ ├── alarm.c │ │ ├── alarm.h │ │ ├── archapi.h │ │ ├── attach.c │ │ ├── attach.h │ │ ├── autostart-prg.c │ │ ├── autostart-prg.h │ │ ├── autostart.c │ │ ├── autostart.h │ │ ├── blockdev.h │ │ ├── c64_c64hq_vpl.h │ │ ├── c64_c64s_vpl.h │ │ ├── c64_ccs64_vpl.h │ │ ├── c64_default_vpl.h │ │ ├── c64_frodo_vpl.h │ │ ├── c64_godot_vpl.h │ │ ├── c64_pc64_vpl.h │ │ ├── c64_vice_vpl.h │ │ ├── c64basic.h │ │ ├── c64chargen.h │ │ ├── c64kernal.h │ │ ├── c64ui.h │ │ ├── cartio.h │ │ ├── cartridge.h │ │ ├── catweaselmkiii.h │ │ ├── cbmdos.c │ │ ├── cbmdos.h │ │ ├── cbmimage.c │ │ ├── cbmimage.h │ │ ├── charset.c │ │ ├── charset.h │ │ ├── cia.h │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── clkguard.c │ │ ├── clkguard.h │ │ ├── cmdline.c │ │ ├── cmdline.h │ │ ├── color.c │ │ ├── color.h │ │ ├── console.h │ │ ├── datasette.c │ │ ├── datasette.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── diskconstants.h │ │ ├── diskimage.h │ │ ├── dma.c │ │ ├── dma.h │ │ ├── drived1541II.h │ │ ├── drivedos1001.h │ │ ├── drivedos1540.h │ │ ├── drivedos1541.h │ │ ├── drivedos1570.h │ │ ├── drivedos1571.h │ │ ├── drivedos1581.h │ │ ├── drivedos2000.h │ │ ├── drivedos2031.h │ │ ├── drivedos2040.h │ │ ├── drivedos3040.h │ │ ├── drivedos4000.h │ │ ├── drivedos4040.h │ │ ├── dynlib.h │ │ ├── embedded.c │ │ ├── embedded.h │ │ ├── event.c │ │ ├── export.h │ │ ├── fileio.h │ │ ├── findpath.c │ │ ├── findpath.h │ │ ├── fixpoint.c │ │ ├── fixpoint.h │ │ ├── flash040.h │ │ ├── fliplist.c │ │ ├── fliplist.h │ │ ├── fsdevice.h │ │ ├── fullscreen.h │ │ ├── gcr.c │ │ ├── gcr.h │ │ ├── gfxoutput.h │ │ ├── h6809regs.h │ │ ├── hardsid.h │ │ ├── iecbus.h │ │ ├── iecdrive.h │ │ ├── imagecontents.h │ │ ├── info.c │ │ ├── info.h │ │ ├── infocontrib.h │ │ ├── init.c │ │ ├── init.h │ │ ├── initcmdline.c │ │ ├── initcmdline.h │ │ ├── interrupt.c │ │ ├── interrupt.h │ │ ├── ioutil.c │ │ ├── ioutil.h │ │ ├── kbdbuf.c │ │ ├── kbdbuf.h │ │ ├── keyboard.c │ │ ├── keyboard.h │ │ ├── lib.c │ │ ├── lib.h │ │ ├── libm_math.c │ │ ├── libm_math.h │ │ ├── log.c │ │ ├── log.h │ │ ├── machine-bus.c │ │ ├── machine-bus.h │ │ ├── machine-drive.h │ │ ├── machine-printer.h │ │ ├── machine-video.h │ │ ├── machine.c │ │ ├── machine.h │ │ ├── main.c │ │ ├── main.h │ │ ├── mainc64cpu.h │ │ ├── maincpu.h │ │ ├── mem.h │ │ ├── midi.c │ │ ├── midi.h │ │ ├── mididrv.h │ │ ├── monitor.h │ │ ├── mos6510.h │ │ ├── mos6510dtv.h │ │ ├── network.c │ │ ├── network.h │ │ ├── opencbmlib.c │ │ ├── opencbmlib.h │ │ ├── palette.c │ │ ├── palette.h │ │ ├── parallel.h │ │ ├── parsid.h │ │ ├── printer.h │ │ ├── printermps803.h │ │ ├── printernl10cbm.h │ │ ├── r65c02.h │ │ ├── ram.c │ │ ├── ram.h │ │ ├── rawfile.c │ │ ├── rawfile.h │ │ ├── rawnet.c │ │ ├── rawnet.h │ │ ├── resources.c │ │ ├── resources.h │ │ ├── riot.h │ │ ├── romset.c │ │ ├── romset.h │ │ ├── rs232drv.h │ │ ├── rsuser.h │ │ ├── screenshot.c │ │ ├── screenshot.h │ │ ├── serial.h │ │ ├── signals.h │ │ ├── snapshot.c │ │ ├── snapshot.h │ │ ├── socket.c │ │ ├── sound.c │ │ ├── sound.h │ │ ├── ssi2001.h │ │ ├── sysfile.c │ │ ├── sysfile.h │ │ ├── tap.h │ │ ├── tape.h │ │ ├── tpi.h │ │ ├── translate.c │ │ ├── translate.h │ │ ├── translate_funcs.h │ │ ├── translate_languages.h │ │ ├── traps.c │ │ ├── traps.h │ │ ├── uiapi.h │ │ ├── uicmdline.h │ │ ├── uicolor.h │ │ ├── uimon.h │ │ ├── util.c │ │ ├── util.h │ │ ├── version.h │ │ ├── via.h │ │ ├── vice-config.h │ │ ├── vice-crc32.c │ │ ├── vice-crc32.h │ │ ├── vice-event.h │ │ ├── vice.h │ │ ├── vice_sdl.h │ │ ├── vicefeatures.c │ │ ├── vicefeatures.h │ │ ├── vicemaxpath.h │ │ ├── vicesocket.h │ │ ├── vicii.h │ │ ├── vicii_c64hq_vpl.h │ │ ├── vicii_c64s_vpl.h │ │ ├── vicii_ccs64_vpl.h │ │ ├── vicii_community_colors_vpl.h │ │ ├── vicii_deekay_vpl.h │ │ ├── vicii_frodo_vpl.h │ │ ├── vicii_godot_vpl.h │ │ ├── vicii_pc64_vpl.h │ │ ├── vicii_pepto_ntsc_sony_vpl.h │ │ ├── vicii_pepto_ntsc_vpl.h │ │ ├── vicii_pepto_pal_vpl.h │ │ ├── vicii_pepto_palold_vpl.h │ │ ├── vicii_ptoing_vpl.h │ │ ├── vicii_rgb_vpl.h │ │ ├── vicii_vice_vpl.h │ │ ├── video.h │ │ ├── viewport.h │ │ ├── vsidui.h │ │ ├── vsync.c │ │ ├── vsync.h │ │ ├── vsyncapi.h │ │ ├── wdc65816.h │ │ ├── z80regs.h │ │ ├── zfile.c │ │ ├── zfile.h │ │ ├── zipcode.c │ │ └── zipcode.h │ │ ├── rs232drv │ │ ├── rs232.h │ │ ├── rs232drv.c │ │ └── rsuser.c │ │ ├── rtc │ │ ├── bq4830y.c │ │ ├── bq4830y.h │ │ ├── ds1202_1302.c │ │ ├── ds1202_1302.h │ │ ├── ds1216e.c │ │ ├── ds1216e.h │ │ ├── ds12c887.c │ │ ├── ds12c887.h │ │ ├── ds1307.c │ │ ├── ds1307.h │ │ ├── ds1602.c │ │ ├── ds1602.h │ │ ├── pcf8583.c │ │ ├── pcf8583.h │ │ ├── rtc-58321a.c │ │ ├── rtc-58321a.h │ │ ├── rtc.c │ │ └── rtc.h │ │ ├── samplerdrv │ │ ├── file_drv.c │ │ ├── file_drv.h │ │ ├── portaudio_drv.c │ │ ├── portaudio_drv.h │ │ ├── sampler.c │ │ └── sampler.h │ │ ├── serial │ │ ├── fsdrive.c │ │ ├── fsdrive.h │ │ ├── realdevice.h │ │ ├── serial-device.c │ │ ├── serial-iec-bus.c │ │ ├── serial-iec-bus.h │ │ ├── serial-iec-device.c │ │ ├── serial-iec-device.h │ │ ├── serial-iec-lib.c │ │ ├── serial-iec.c │ │ ├── serial-iec.h │ │ ├── serial-realdevice.c │ │ ├── serial-trap.c │ │ ├── serial-trap.h │ │ └── serial.c │ │ ├── sid │ │ ├── fastsid.c │ │ ├── fastsid.h │ │ ├── resid-fp.cpp │ │ ├── resid-fp.h │ │ ├── resid.cpp │ │ ├── resid.h │ │ ├── sid-cmdline-options.c │ │ ├── sid-cmdline-options.h │ │ ├── sid-resources.c │ │ ├── sid-resources.h │ │ ├── sid-snapshot.c │ │ ├── sid-snapshot.h │ │ ├── sid.c │ │ ├── sid.h │ │ ├── wave6581.h │ │ └── wave8580.h │ │ ├── sounddrv │ │ ├── soundaiff.c │ │ ├── sounddummy.c │ │ ├── sounddump.c │ │ ├── soundfs.c │ │ ├── soundiff.c │ │ ├── soundmovie.c │ │ ├── soundmovie.h │ │ ├── soundsdl.c │ │ ├── soundvoc.c │ │ └── soundwav.c │ │ ├── tape │ │ ├── t64.c │ │ ├── t64.h │ │ ├── tap.c │ │ ├── tape-internal.c │ │ ├── tape-internal.h │ │ ├── tape-snapshot.c │ │ ├── tape-snapshot.h │ │ ├── tape.c │ │ ├── tapeimage.c │ │ └── tapeimage.h │ │ ├── tapeport │ │ ├── cp-clockf83.c │ │ ├── cp-clockf83.h │ │ ├── dtl-basic-dongle.c │ │ ├── dtl-basic-dongle.h │ │ ├── sense-dongle.c │ │ ├── sense-dongle.h │ │ ├── tape_diag_586220_harness.c │ │ ├── tape_diag_586220_harness.h │ │ ├── tapelog.c │ │ ├── tapelog.h │ │ ├── tapeport.c │ │ └── tapeport.h │ │ ├── userport │ │ ├── userport.c │ │ ├── userport.h │ │ ├── userport_4bit_sampler.c │ │ ├── userport_4bit_sampler.h │ │ ├── userport_8bss.c │ │ ├── userport_8bss.h │ │ ├── userport_dac.c │ │ ├── userport_dac.h │ │ ├── userport_diag_586220_harness.c │ │ ├── userport_diag_586220_harness.h │ │ ├── userport_digimax.c │ │ ├── userport_digimax.h │ │ ├── userport_joystick.c │ │ ├── userport_joystick.h │ │ ├── userport_rtc_58321a.c │ │ ├── userport_rtc_58321a.h │ │ ├── userport_rtc_ds1307.c │ │ └── userport_rtc_ds1307.h │ │ ├── vdrive │ │ ├── vdrive-bam.c │ │ ├── vdrive-bam.h │ │ ├── vdrive-command.c │ │ ├── vdrive-command.h │ │ ├── vdrive-dir.c │ │ ├── vdrive-dir.h │ │ ├── vdrive-iec.c │ │ ├── vdrive-iec.h │ │ ├── vdrive-internal.c │ │ ├── vdrive-internal.h │ │ ├── vdrive-rel.c │ │ ├── vdrive-rel.h │ │ ├── vdrive-snapshot.c │ │ ├── vdrive-snapshot.h │ │ ├── vdrive.c │ │ └── vdrive.h │ │ ├── viciisc │ │ ├── vicii-chip-model.c │ │ ├── vicii-chip-model.h │ │ ├── vicii-cmdline-options.c │ │ ├── vicii-cmdline-options.h │ │ ├── vicii-color.c │ │ ├── vicii-color.h │ │ ├── vicii-cycle.c │ │ ├── vicii-cycle.h │ │ ├── vicii-draw-cycle.c │ │ ├── vicii-draw-cycle.h │ │ ├── vicii-draw.c │ │ ├── vicii-draw.h │ │ ├── vicii-fetch.c │ │ ├── vicii-fetch.h │ │ ├── vicii-irq.c │ │ ├── vicii-irq.h │ │ ├── vicii-lightpen.c │ │ ├── vicii-lightpen.h │ │ ├── vicii-mem.c │ │ ├── vicii-mem.h │ │ ├── vicii-phi1.c │ │ ├── vicii-phi1.h │ │ ├── vicii-resources.c │ │ ├── vicii-resources.h │ │ ├── vicii-snapshot.c │ │ ├── vicii-snapshot.h │ │ ├── vicii-timing.c │ │ ├── vicii-timing.h │ │ ├── vicii.c │ │ └── viciitypes.h │ │ └── video │ │ ├── render1x1.c │ │ ├── render1x1.h │ │ ├── render1x1crt.c │ │ ├── render1x1crt.h │ │ ├── render1x1ntsc.c │ │ ├── render1x1ntsc.h │ │ ├── render1x1pal.c │ │ ├── render1x1pal.h │ │ ├── render1x2.c │ │ ├── render1x2.h │ │ ├── render1x2crt.c │ │ ├── render1x2crt.h │ │ ├── render2x2.c │ │ ├── render2x2.h │ │ ├── render2x2crt.c │ │ ├── render2x2crt.h │ │ ├── render2x2ntsc.c │ │ ├── render2x2ntsc.h │ │ ├── render2x2pal.c │ │ ├── render2x2pal.h │ │ ├── render2x4.c │ │ ├── render2x4.h │ │ ├── render2x4crt.c │ │ ├── render2x4crt.h │ │ ├── renderscale2x.c │ │ ├── renderscale2x.h │ │ ├── renderyuv.c │ │ ├── renderyuv.h │ │ ├── video-canvas.c │ │ ├── video-canvas.h │ │ ├── video-cmdline-options.c │ │ ├── video-color.c │ │ ├── video-color.h │ │ ├── video-render-1x2.c │ │ ├── video-render-2x2.c │ │ ├── video-render-crt.c │ │ ├── video-render-pal.c │ │ ├── video-render.c │ │ ├── video-render.h │ │ ├── video-resources.c │ │ ├── video-resources.h │ │ ├── video-sound.c │ │ ├── video-sound.h │ │ └── video-viewport.c ├── Plugins │ ├── C64D_InitPlugins.cpp │ ├── C64D_InitPlugins.h │ ├── C64DebuggerPluginDummy.cpp │ ├── C64DebuggerPluginDummy.h │ ├── C64DebuggerPluginTemplate.cpp │ ├── C64DebuggerPluginTemplate.h │ ├── Commando │ │ ├── C64DebuggerPluginCommandoTrainer.cpp │ │ └── C64DebuggerPluginCommandoTrainer.h │ ├── CrtMaker │ │ ├── C64DebuggerPluginCrtMaker.cpp │ │ ├── C64DebuggerPluginCrtMaker.h │ │ ├── CViewC64CrtMaker.cpp │ │ └── CViewC64CrtMaker.h │ ├── DNDK │ │ ├── C64DebuggerPluginDNDK.cpp │ │ └── C64DebuggerPluginDNDK.h │ ├── GoatTracker │ │ ├── C64DebuggerPluginGoatTracker.cpp │ │ ├── C64DebuggerPluginGoatTracker.h │ │ ├── CAudioChannelGoatTracker.cpp │ │ ├── CAudioChannelGoatTracker.h │ │ ├── CViewC64GoatTracker.cpp │ │ ├── CViewC64GoatTracker.h │ │ └── gt2 │ │ │ ├── altplayer.s │ │ │ ├── asm │ │ │ ├── gt-asmtab.c │ │ │ ├── gt-asmtab.h │ │ │ ├── gt-callback.h │ │ │ ├── gt-chnkpool.c │ │ │ ├── gt-chnkpool.h │ │ │ ├── gt-expr.c │ │ │ ├── gt-expr.h │ │ │ ├── gt-int.h │ │ │ ├── gt-lexyy.c │ │ │ ├── gt-log.c │ │ │ ├── gt-log.h │ │ │ ├── gt-membuf.c │ │ │ ├── gt-membuf.h │ │ │ ├── gt-membufio.c │ │ │ ├── gt-membufio.h │ │ │ ├── gt-namedbuf.c │ │ │ ├── gt-namedbuf.h │ │ │ ├── gt-parse.c │ │ │ ├── gt-parse.h │ │ │ ├── gt-pc.c │ │ │ ├── gt-pc.h │ │ │ ├── gt-vec.c │ │ │ └── gt-vec.h │ │ │ ├── bme │ │ │ ├── bme.c │ │ │ ├── bme.h │ │ │ ├── bme_cfg.h │ │ │ ├── bme_end.c │ │ │ ├── bme_end.h │ │ │ ├── bme_err.h │ │ │ ├── bme_gfx.c │ │ │ ├── bme_gfx.h │ │ │ ├── bme_io.c │ │ │ ├── bme_io.h │ │ │ ├── bme_joy.h │ │ │ ├── bme_kbd.c │ │ │ ├── bme_kbd.h │ │ │ ├── bme_main.h │ │ │ ├── bme_mou.c │ │ │ ├── bme_mou.h │ │ │ ├── bme_snd.c │ │ │ ├── bme_snd.h │ │ │ ├── bme_win.c │ │ │ └── bme_win.h │ │ │ ├── chargen.bin │ │ │ ├── cursor.bin │ │ │ ├── cursor.lbm │ │ │ ├── cwsid.h │ │ │ ├── gcommon.h │ │ │ ├── gconsole.c │ │ │ ├── gconsole.h │ │ │ ├── gdisplay.c │ │ │ ├── gdisplay.h │ │ │ ├── gfile.c │ │ │ ├── gfile.h │ │ │ ├── ghelp.c │ │ │ ├── ginstr.c │ │ │ ├── ginstr.h │ │ │ ├── goatdata.c │ │ │ ├── goattrk2.c │ │ │ ├── goattrk2.h │ │ │ ├── gorder.c │ │ │ ├── gorder.h │ │ │ ├── gpattern.c │ │ │ ├── gpattern.h │ │ │ ├── gplay.c │ │ │ ├── gplay.h │ │ │ ├── greloc.c │ │ │ ├── greloc.h │ │ │ ├── gsid.cpp │ │ │ ├── gsid.h │ │ │ ├── gsong.c │ │ │ ├── gsong.h │ │ │ ├── gsound.c │ │ │ ├── gsound.h │ │ │ ├── gtable.c │ │ │ ├── gtable.h │ │ │ ├── mac_midi.c │ │ │ ├── mac_midi.h │ │ │ └── player.s │ └── Slideshow │ │ ├── C64DebuggerPluginSlideshow.cpp │ │ └── C64DebuggerPluginSlideshow.h ├── Remote │ ├── CDebuggerServer.cpp │ ├── CDebuggerServer.h │ ├── CDebuggerServerApi.cpp │ ├── CDebuggerServerApi.h │ ├── Pipe │ │ ├── CPipeProtocolDebuggerCallback.cpp │ │ └── CPipeProtocolDebuggerCallback.h │ └── WebSockets │ │ ├── CDebuggerServerWebSockets.cpp │ │ └── CDebuggerServerWebSockets.h ├── RetroDebuggerAppInit.cpp ├── RetroDebuggerAppInit.h ├── Screens │ ├── CMainMenuHelper.cpp │ ├── CMainMenuHelper.h │ ├── CViewAbout.cpp │ ├── CViewAbout.h │ ├── CViewC64.cpp │ ├── CViewC64.h │ ├── CViewColodore.cpp │ ├── CViewColodore.h │ ├── CViewKeyboardShortcuts.cpp │ ├── CViewKeyboardShortcuts.h │ ├── CViewMainMenu.cpp │ ├── CViewMainMenu.h │ ├── CViewSettingsMenu.cpp │ ├── CViewSettingsMenu.h │ ├── CViewSnapshots.cpp │ ├── CViewSnapshots.h │ └── VicEditor │ │ ├── C64DisplayListCodeGenerator.cpp │ │ ├── C64DisplayListCodeGenerator.h │ │ ├── CVicEditorTool.cpp │ │ └── CVicEditorTool.h ├── Tools │ ├── 64tass │ │ ├── 64tass-avl.c │ │ ├── 64tass-encoding.c │ │ ├── 64tass-encoding.h │ │ ├── 64tass-error.c │ │ ├── 64tass-error.h │ │ ├── 64tass-eval.c │ │ ├── 64tass-eval.h │ │ ├── 64tass-getopt.h │ │ ├── 64tass-libtree.h │ │ ├── 64tass-misc.c │ │ ├── 64tass-misc.h │ │ ├── 64tass-my_getopt.c │ │ ├── 64tass-my_getopt.h │ │ ├── 64tass-opcodes.c │ │ ├── 64tass-opcodes.h │ │ ├── 64tass-section.c │ │ ├── 64tass-section.h │ │ ├── 64tass-ternary.c │ │ ├── 64tass-ternary.h │ │ └── 64tass.c │ ├── C64ColodoreScreen.cpp │ ├── C64ColodoreScreen.h │ ├── C64CommandLine.cpp │ ├── C64CommandLine.h │ ├── C64FileDataAdapter.cpp │ ├── C64FileDataAdapter.h │ ├── C64KeyMap.cpp │ ├── C64KeyMap.h │ ├── C64KeyboardShortcuts.cpp │ ├── C64KeyboardShortcuts.h │ ├── C64Opcodes.h │ ├── C64Palette.cpp │ ├── C64Palette.h │ ├── C64SIDDump.cpp │ ├── C64SIDDump.h │ ├── C64SIDFrequencies.cpp │ ├── C64SIDFrequencies.h │ ├── C64SettingsStorage.cpp │ ├── C64SettingsStorage.h │ ├── C64SharedMemory.cpp │ ├── C64SharedMemory.h │ ├── C64Tools.cpp │ ├── C64Tools.h │ ├── CGuiLockableList.cpp │ ├── CGuiLockableList.h │ ├── CSnapshotsManager.cpp │ ├── CSnapshotsManager.h │ ├── TextEditor │ │ ├── TestTextEditor.cpp │ │ ├── TextEditor.cpp │ │ ├── TextEditor.cpp-fixes │ │ ├── TextEditor.h │ │ └── TextEditor.h-fixes │ ├── asap │ │ ├── AtariAsap.cpp │ │ ├── AtariAsap.h │ │ ├── asap.c │ │ └── asap.h │ ├── asm6 │ │ └── asm6f.c │ ├── exomizer │ │ ├── exomizer-chunkpool.c │ │ ├── exomizer-chunkpool.h │ │ ├── exomizer-log.h │ │ ├── exomizer-match.c │ │ ├── exomizer-match.h │ │ ├── exomizer-optimal.c │ │ ├── exomizer-optimal.h │ │ ├── exomizer-output.c │ │ ├── exomizer-output.h │ │ ├── exomizer-radix.c │ │ ├── exomizer-radix.h │ │ ├── exomizer-search.c │ │ ├── exomizer-search.h │ │ ├── exomizer-sfx.h │ │ ├── exomizer-sfx64ne.c │ │ ├── exomizer.c │ │ └── exomizer.h │ ├── libpsid64 │ │ ├── libpsid-psid64.cpp │ │ ├── libpsid-psidboot.h │ │ ├── libpsid-psiddrv.h │ │ ├── libpsid-psidextboot.h │ │ ├── libpsid-psidextdrv.h │ │ ├── libpsid-reloc65.cpp │ │ ├── libpsid-reloc65.h │ │ ├── libpsid-screen.cpp │ │ ├── libpsid-screen.h │ │ ├── libpsid-sidid.cpp │ │ ├── libpsid-sidid.h │ │ ├── libpsid-theme.cpp │ │ ├── libpsid-theme.h │ │ └── psid64.h │ ├── sidplay │ │ ├── Buffer.h │ │ ├── SidTune.h │ │ ├── SmartPtr.h │ │ ├── sidconfig.h │ │ ├── sidconfig.h.in │ │ ├── sidendian.h │ │ ├── sidint.h │ │ ├── sidtune │ │ │ ├── IconInfo.cpp │ │ │ ├── InfoFile.cpp │ │ │ ├── MUS.cpp │ │ │ ├── PP20.cpp │ │ │ ├── PP20.h │ │ │ ├── PP20_Defs.h │ │ │ ├── SidTune.cpp │ │ │ ├── SidTuneCfg.h │ │ │ ├── SidTuneTools.cpp │ │ │ ├── SidTuneTools.h │ │ │ └── prg.cpp │ │ ├── sidtypes.h │ │ └── utils │ │ │ ├── SidDatabase.cpp │ │ │ ├── SidDatabase.h │ │ │ ├── SidTuneMod.cpp │ │ │ ├── SidTuneMod.h │ │ │ ├── libini-headings.h │ │ │ ├── libini-headings.i │ │ │ ├── libini-ini.cpp │ │ │ ├── libini-ini.h │ │ │ ├── libini-keys.h │ │ │ ├── libini-keys.i │ │ │ ├── libini-list.h │ │ │ ├── libini-list.i │ │ │ ├── libini-types.i │ │ │ └── libini.h │ └── stilview │ │ ├── stil.cpp │ │ ├── stil.h │ │ ├── stilcomm.cpp │ │ ├── stilcomm.h │ │ └── stildefs.h └── Views │ ├── Atari800 │ ├── CViewAtariScreen.cpp │ ├── CViewAtariScreen.h │ ├── CViewAtariStateANTIC.cpp │ ├── CViewAtariStateANTIC.h │ ├── CViewAtariStateCPU.cpp │ ├── CViewAtariStateCPU.h │ ├── CViewAtariStateGTIA.cpp │ ├── CViewAtariStateGTIA.h │ ├── CViewAtariStatePIA.cpp │ ├── CViewAtariStatePIA.h │ ├── CViewAtariStatePOKEY.cpp │ └── CViewAtariStatePOKEY.h │ ├── C64 │ ├── AllGraphics │ │ ├── CViewC64AllGraphicsBitmaps.cpp │ │ ├── CViewC64AllGraphicsBitmaps.h │ │ ├── CViewC64AllGraphicsBitmapsControl.cpp │ │ ├── CViewC64AllGraphicsBitmapsControl.h │ │ ├── CViewC64AllGraphicsCharsets.cpp │ │ ├── CViewC64AllGraphicsCharsets.h │ │ ├── CViewC64AllGraphicsCharsetsControl.cpp │ │ ├── CViewC64AllGraphicsCharsetsControl.h │ │ ├── CViewC64AllGraphicsCommonControl.cpp │ │ ├── CViewC64AllGraphicsCommonControl.h │ │ ├── CViewC64AllGraphicsScreens.cpp │ │ ├── CViewC64AllGraphicsScreens.h │ │ ├── CViewC64AllGraphicsScreensControl.cpp │ │ ├── CViewC64AllGraphicsScreensControl.h │ │ ├── CViewC64AllGraphicsSprites.cpp │ │ ├── CViewC64AllGraphicsSprites.h │ │ ├── CViewC64AllGraphicsSpritesControl.cpp │ │ ├── CViewC64AllGraphicsSpritesControl.h │ │ └── ViewC64AllGraphicsDefs.h │ ├── CViewC64BreakpointsIrq.cpp │ ├── CViewC64BreakpointsIrq.h │ ├── CViewC64ColorRamScreen.cpp │ ├── CViewC64ColorRamScreen.h │ ├── CViewC64Disassembly.cpp │ ├── CViewC64Disassembly.h │ ├── CViewC64EmulationCounters.cpp │ ├── CViewC64EmulationCounters.h │ ├── CViewC64KeyMap.cpp │ ├── CViewC64KeyMap.h │ ├── CViewC64Screen.cpp │ ├── CViewC64Screen.h │ ├── CViewC64ScreenViewfinder.cpp │ ├── CViewC64ScreenViewfinder.h │ ├── CViewC64SidPianoKeyboard.cpp │ ├── CViewC64SidPianoKeyboard.h │ ├── CViewC64SidTrackerHistory.cpp │ ├── CViewC64SidTrackerHistory.h │ ├── CViewC64StateCIA.cpp │ ├── CViewC64StateCIA.h │ ├── CViewC64StateCPU.cpp │ ├── CViewC64StateCPU.h │ ├── CViewC64StateREU.cpp │ ├── CViewC64StateREU.h │ ├── CViewC64StateSID.cpp │ ├── CViewC64StateSID.h │ ├── CViewC64StateVIC.cpp │ ├── CViewC64StateVIC.h │ ├── CViewDrive1541BreakpointsIrq.cpp │ ├── CViewDrive1541BreakpointsIrq.h │ ├── CViewDrive1541Browser.cpp │ ├── CViewDrive1541Browser.h │ ├── CViewDrive1541DiskData.cpp │ ├── CViewDrive1541DiskData.h │ ├── CViewDrive1541Led.cpp │ ├── CViewDrive1541Led.h │ ├── CViewDrive1541StateCPU.cpp │ ├── CViewDrive1541StateCPU.h │ ├── CViewDrive1541StateVIA.cpp │ ├── CViewDrive1541StateVIA.h │ ├── VicDisplay │ │ ├── C64Bitmap.cpp │ │ ├── C64Bitmap.h │ │ ├── C64CharHires.cpp │ │ ├── C64CharHires.h │ │ ├── C64CharMulti.cpp │ │ ├── C64CharMulti.h │ │ ├── C64CharsetHires.cpp │ │ ├── C64CharsetHires.h │ │ ├── C64Sprite.cpp │ │ ├── C64Sprite.h │ │ ├── C64SpriteHires.cpp │ │ ├── C64SpriteHires.h │ │ ├── C64SpriteMulti.cpp │ │ ├── C64SpriteMulti.h │ │ ├── C64VicDisplayCanvas.cpp │ │ ├── C64VicDisplayCanvas.h │ │ ├── C64VicDisplayCanvasBlank.cpp │ │ ├── C64VicDisplayCanvasBlank.h │ │ ├── C64VicDisplayCanvasExtendedText.cpp │ │ ├── C64VicDisplayCanvasExtendedText.h │ │ ├── C64VicDisplayCanvasHiresBitmap.cpp │ │ ├── C64VicDisplayCanvasHiresBitmap.h │ │ ├── C64VicDisplayCanvasHiresText.cpp │ │ ├── C64VicDisplayCanvasHiresText.h │ │ ├── C64VicDisplayCanvasMultiBitmap.cpp │ │ ├── C64VicDisplayCanvasMultiBitmap.h │ │ ├── C64VicDisplayCanvasMultiText.cpp │ │ ├── C64VicDisplayCanvasMultiText.h │ │ ├── CViewC64VicControl.cpp │ │ ├── CViewC64VicControl.h │ │ ├── CViewC64VicDisplay.cpp │ │ └── CViewC64VicDisplay.h │ └── VicEditor │ │ ├── CVicEditorBrush.cpp │ │ ├── CVicEditorBrush.h │ │ ├── CVicEditorUndoData.cpp │ │ ├── CVicEditorUndoData.h │ │ ├── CViewC64Charset.cpp │ │ ├── CViewC64Charset.h │ │ ├── CViewC64Palette.cpp │ │ ├── CViewC64Palette.h │ │ ├── CViewC64Sprite.cpp │ │ ├── CViewC64Sprite.h │ │ ├── CViewC64VicEditor.cpp │ │ ├── CViewC64VicEditor.h │ │ ├── CViewC64VicEditorCreateNewPicture.cpp │ │ ├── CViewC64VicEditorCreateNewPicture.h │ │ ├── CViewC64VicEditorDisplayPreview.cpp │ │ ├── CViewC64VicEditorDisplayPreview.h │ │ ├── CViewC64VicEditorPreview.cpp │ │ ├── CViewC64VicEditorPreview.h │ │ └── Layers │ │ ├── CVicEditorLayer.cpp │ │ ├── CVicEditorLayer.h │ │ ├── CVicEditorLayerC64Canvas.cpp │ │ ├── CVicEditorLayerC64Canvas.h │ │ ├── CVicEditorLayerC64Screen.cpp │ │ ├── CVicEditorLayerC64Screen.h │ │ ├── CVicEditorLayerC64Sprites.cpp │ │ ├── CVicEditorLayerC64Sprites.h │ │ ├── CVicEditorLayerImage.cpp │ │ ├── CVicEditorLayerImage.h │ │ ├── CVicEditorLayerUnrestrictedBitmap.cpp │ │ ├── CVicEditorLayerUnrestrictedBitmap.h │ │ ├── CVicEditorLayerVirtualSprites.cpp │ │ ├── CVicEditorLayerVirtualSprites.h │ │ ├── CViewC64VicEditorLayers.cpp │ │ └── CViewC64VicEditorLayers.h │ ├── CDataAddressEditBox.cpp │ ├── CDataAddressEditBox.h │ ├── CDataAddressEditBoxHex.cpp │ ├── CDataAddressEditBoxHex.h │ ├── CMainMenuBar.cpp │ ├── CMainMenuBar.h │ ├── CViewBaseStateCPU.cpp │ ├── CViewBaseStateCPU.h │ ├── CViewBreakpoints.cpp │ ├── CViewBreakpoints.h │ ├── CViewDataDump.cpp │ ├── CViewDataDump.h │ ├── CViewDataMap.cpp │ ├── CViewDataMap.h │ ├── CViewDataMonitor.cpp │ ├── CViewDataMonitor.h │ ├── CViewDataPlot.cpp │ ├── CViewDataPlot.h │ ├── CViewDataWatch.cpp │ ├── CViewDataWatch.h │ ├── CViewDebugEventsHistory.cpp │ ├── CViewDebugEventsHistory.h │ ├── CViewDisassembly.cpp │ ├── CViewDisassembly.h │ ├── CViewEmulationCounters.cpp │ ├── CViewEmulationCounters.h │ ├── CViewEmulationState.cpp │ ├── CViewEmulationState.h │ ├── CViewEmulatorScreen.cpp │ ├── CViewEmulatorScreen.h │ ├── CViewFileBrowser.cpp │ ├── CViewFileBrowser.h │ ├── CViewInputEvents.cpp │ ├── CViewInputEvents.h │ ├── CViewMonitorConsole.cpp │ ├── CViewMonitorConsole.h │ ├── CViewSourceCode.cpp │ ├── CViewSourceCode.h │ ├── CViewTimeline.cpp │ ├── CViewTimeline.h │ ├── JukeboxPlaylist │ ├── CJukeboxPlaylist.cpp │ ├── CJukeboxPlaylist.h │ ├── CViewJukeboxPlaylist.cpp │ └── CViewJukeboxPlaylist.h │ └── Nes │ ├── CViewNesPianoKeyboard.cpp │ ├── CViewNesPianoKeyboard.h │ ├── CViewNesPpuAttributes.cpp │ ├── CViewNesPpuAttributes.h │ ├── CViewNesPpuNametables.cpp │ ├── CViewNesPpuNametables.h │ ├── CViewNesPpuOam.cpp │ ├── CViewNesPpuOam.h │ ├── CViewNesPpuPalette.cpp │ ├── CViewNesPpuPalette.h │ ├── CViewNesPpuPatterns.cpp │ ├── CViewNesPpuPatterns.h │ ├── CViewNesScreen.cpp │ ├── CViewNesScreen.h │ ├── CViewNesStateAPU.cpp │ ├── CViewNesStateAPU.h │ ├── CViewNesStateCPU.cpp │ ├── CViewNesStateCPU.h │ ├── CViewNesStatePPU.cpp │ └── CViewNesStatePPU.h └── tools ├── Exomizer-Decrunch ├── README.txt ├── build-decrunch.sh ├── c64.cfg ├── exodecrunch.s └── main.s ├── c64d-champ └── c64d-champ.rb └── websockets-debugger-test ├── client-test.js ├── package-lock.json └── package.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Cousine-Regular-cut.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/Cousine-Regular-cut.ttf -------------------------------------------------------------------------------- /assets/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/CousineRegular-cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/CousineRegular-cut.h -------------------------------------------------------------------------------- /assets/fonts/JetBrainsMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/JetBrainsMono-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/JetBrainsMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/JetBrainsMono-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/JetBrainsMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/JetBrainsMono-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/ProFontIIx-compressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/ProFontIIx-compressed.h -------------------------------------------------------------------------------- /assets/fonts/ProFontIIx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/ProFontIIx.h -------------------------------------------------------------------------------- /assets/fonts/ProFontIIx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/ProFontIIx.ttf -------------------------------------------------------------------------------- /assets/fonts/ProFontWindowsPL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/ProFontWindowsPL.h -------------------------------------------------------------------------------- /assets/fonts/ProFontWindowsPL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/ProFontWindowsPL.ttf -------------------------------------------------------------------------------- /assets/fonts/font-c64-1-writer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/font-c64-1-writer.bin -------------------------------------------------------------------------------- /assets/fonts/font-c64-1-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/font-c64-1-writer.h -------------------------------------------------------------------------------- /assets/fonts/font-c64-5x5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/font-c64-5x5.bin -------------------------------------------------------------------------------- /assets/fonts/font-c64-5x5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/font-c64-5x5.h -------------------------------------------------------------------------------- /assets/fonts/font-c64-ahoy-art-deco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/fonts/font-c64-ahoy-art-deco.h -------------------------------------------------------------------------------- /assets/icons/65XEDebugger-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/icons/65XEDebugger-icon.png -------------------------------------------------------------------------------- /assets/icons/C64Debugger-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/icons/C64Debugger-icon.png -------------------------------------------------------------------------------- /assets/icons/NESDebugger-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/icons/NESDebugger-icon.png -------------------------------------------------------------------------------- /assets/template/convert-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/convert-template.sh -------------------------------------------------------------------------------- /assets/template/empty.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/empty.d64 -------------------------------------------------------------------------------- /assets/template/reset-contents.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/reset-contents.snap -------------------------------------------------------------------------------- /assets/template/reset-load.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/reset-load.snap -------------------------------------------------------------------------------- /assets/template/reset_basic.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/reset_basic.snap -------------------------------------------------------------------------------- /assets/template/reset_basic.snap.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/template/reset_basic.snap.zlib -------------------------------------------------------------------------------- /assets/toolbar/convert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for f in *.png; do DeployMaker $f; done 3 | -------------------------------------------------------------------------------- /assets/toolbar/icon_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_clear.png -------------------------------------------------------------------------------- /assets/toolbar/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_close.png -------------------------------------------------------------------------------- /assets/toolbar/icon_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_export.png -------------------------------------------------------------------------------- /assets/toolbar/icon_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_import.png -------------------------------------------------------------------------------- /assets/toolbar/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_new.png -------------------------------------------------------------------------------- /assets/toolbar/icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_open.png -------------------------------------------------------------------------------- /assets/toolbar/icon_raw_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_raw_export.png -------------------------------------------------------------------------------- /assets/toolbar/icon_raw_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_raw_import.png -------------------------------------------------------------------------------- /assets/toolbar/icon_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_save.png -------------------------------------------------------------------------------- /assets/toolbar/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_settings.png -------------------------------------------------------------------------------- /assets/toolbar/icon_small_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_small_close.png -------------------------------------------------------------------------------- /assets/toolbar/icon_small_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_small_export.png -------------------------------------------------------------------------------- /assets/toolbar/icon_small_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_small_import.png -------------------------------------------------------------------------------- /assets/toolbar/icon_tool_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_tool_circle.png -------------------------------------------------------------------------------- /assets/toolbar/icon_tool_dither.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_tool_dither.png -------------------------------------------------------------------------------- /assets/toolbar/icon_tool_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_tool_fill.png -------------------------------------------------------------------------------- /assets/toolbar/icon_tool_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_tool_line.png -------------------------------------------------------------------------------- /assets/toolbar/icon_tool_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icon_tool_pen.png -------------------------------------------------------------------------------- /assets/toolbar/icons_small.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/assets/toolbar/icons_small.ai -------------------------------------------------------------------------------- /clean-up-dirt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/clean-up-dirt.sh -------------------------------------------------------------------------------- /docs/README-C64-65XE-NES-Debugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/docs/README-C64-65XE-NES-Debugger.txt -------------------------------------------------------------------------------- /docs/release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/docs/release-notes.txt -------------------------------------------------------------------------------- /patch-apply.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git apply --verbose < $* 3 | -------------------------------------------------------------------------------- /patch-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/patch-format.sh -------------------------------------------------------------------------------- /platform/Linux/src.Linux/archdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Linux/src.Linux/archdep.c -------------------------------------------------------------------------------- /platform/Linux/src.Linux/archdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Linux/src.Linux/archdep.h -------------------------------------------------------------------------------- /platform/Linux/src.Linux/mididrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Linux/src.Linux/mididrv.c -------------------------------------------------------------------------------- /platform/MacOS/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/MacOS/build.sh -------------------------------------------------------------------------------- /platform/MacOS/src.MacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/MacOS/src.MacOS/Info.plist -------------------------------------------------------------------------------- /platform/MacOS/src.MacOS/archdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/MacOS/src.MacOS/archdep.c -------------------------------------------------------------------------------- /platform/MacOS/src.MacOS/archdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/MacOS/src.MacOS/archdep.h -------------------------------------------------------------------------------- /platform/MacOS/src.MacOS/mididrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/MacOS/src.MacOS/mididrv.c -------------------------------------------------------------------------------- /platform/Windows/.vs/c64d/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/.vs/c64d/v16/.suo -------------------------------------------------------------------------------- /platform/Windows/c64d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/c64d.sln -------------------------------------------------------------------------------- /platform/Windows/c64d/c64d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/c64d/c64d.vcxproj -------------------------------------------------------------------------------- /platform/Windows/icons/icon512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/icons/icon512.ico -------------------------------------------------------------------------------- /platform/Windows/icons/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/icons/icon64.ico -------------------------------------------------------------------------------- /platform/Windows/src.Windows/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/src.Windows/dirent.h -------------------------------------------------------------------------------- /platform/Windows/src.Windows/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/src.Windows/getopt.c -------------------------------------------------------------------------------- /platform/Windows/src.Windows/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/src.Windows/getopt.h -------------------------------------------------------------------------------- /platform/Windows/src.Windows/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/platform/Windows/src.Windows/libgen.h -------------------------------------------------------------------------------- /src/C64D_Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/C64D_Version.h -------------------------------------------------------------------------------- /src/DebugInterface/CDebugBreakpoints.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/DebugInterface/CDebugInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/DebugInterface/CDebugInterface.h -------------------------------------------------------------------------------- /src/DebugInterface/CDebuggerApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/DebugInterface/CDebuggerApi.cpp -------------------------------------------------------------------------------- /src/DebugInterface/CDebuggerApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/DebugInterface/CDebuggerApi.h -------------------------------------------------------------------------------- /src/DebugInterface/DebuggerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/DebugInterface/DebuggerDefs.h -------------------------------------------------------------------------------- /src/Embedded/FontCousineRegular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontCousineRegular.h -------------------------------------------------------------------------------- /src/Embedded/FontDroidSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontDroidSans.h -------------------------------------------------------------------------------- /src/Embedded/FontExoMedium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontExoMedium.h -------------------------------------------------------------------------------- /src/Embedded/FontKarlaRegular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontKarlaRegular.h -------------------------------------------------------------------------------- /src/Embedded/FontLiberationSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontLiberationSans.h -------------------------------------------------------------------------------- /src/Embedded/FontMonoki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontMonoki.h -------------------------------------------------------------------------------- /src/Embedded/FontPTMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontPTMono.h -------------------------------------------------------------------------------- /src/Embedded/FontPlexMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontPlexMono.h -------------------------------------------------------------------------------- /src/Embedded/FontPlexSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontPlexSans.h -------------------------------------------------------------------------------- /src/Embedded/FontProFontIIx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontProFontIIx.h -------------------------------------------------------------------------------- /src/Embedded/FontRobotoMedium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontRobotoMedium.h -------------------------------------------------------------------------------- /src/Embedded/FontSweet16mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontSweet16mono.h -------------------------------------------------------------------------------- /src/Embedded/FontUnifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/FontUnifont.h -------------------------------------------------------------------------------- /src/Embedded/icon_clear_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_clear_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_close_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_close_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_export_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_export_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_import_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_import_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_new_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_new_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_open_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_open_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_raw_export_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_raw_export_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_raw_import_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_raw_import_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_save_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_save_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_settings_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_settings_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_small_close_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_small_close_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_small_export_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_small_export_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_small_import_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_small_import_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_tool_circle_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_tool_circle_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_tool_dither_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_tool_dither_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_tool_fill_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_tool_fill_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_tool_line_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_tool_line_gfx.h -------------------------------------------------------------------------------- /src/Embedded/icon_tool_pen_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/icon_tool_pen_gfx.h -------------------------------------------------------------------------------- /src/Embedded/reset_basic_snap_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Embedded/reset_basic_snap_zlib.h -------------------------------------------------------------------------------- /src/Emulators/EmulatorsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/EmulatorsConfig.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-cartridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-cartridge.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-cartridge.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-crc32.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-crc32.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-log.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-log.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-monitor.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-monitor.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-platform.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-sound.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-sound.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-ui.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-ui.h -------------------------------------------------------------------------------- /src/Emulators/atari800/a-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-util.c -------------------------------------------------------------------------------- /src/Emulators/atari800/a-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/a-util.h -------------------------------------------------------------------------------- /src/Emulators/atari800/af80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/af80.c -------------------------------------------------------------------------------- /src/Emulators/atari800/af80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/af80.h -------------------------------------------------------------------------------- /src/Emulators/atari800/afile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/afile.c -------------------------------------------------------------------------------- /src/Emulators/atari800/afile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/afile.h -------------------------------------------------------------------------------- /src/Emulators/atari800/akey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/akey.h -------------------------------------------------------------------------------- /src/Emulators/atari800/antic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/antic.c -------------------------------------------------------------------------------- /src/Emulators/atari800/antic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/antic.h -------------------------------------------------------------------------------- /src/Emulators/atari800/artifact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/artifact.c -------------------------------------------------------------------------------- /src/Emulators/atari800/artifact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/artifact.h -------------------------------------------------------------------------------- /src/Emulators/atari800/atari-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/atari-config.h -------------------------------------------------------------------------------- /src/Emulators/atari800/atari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/atari.c -------------------------------------------------------------------------------- /src/Emulators/atari800/atari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/atari.h -------------------------------------------------------------------------------- /src/Emulators/atari800/binload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/binload.c -------------------------------------------------------------------------------- /src/Emulators/atari800/binload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/binload.h -------------------------------------------------------------------------------- /src/Emulators/atari800/bit3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/bit3.c -------------------------------------------------------------------------------- /src/Emulators/atari800/bit3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/bit3.h -------------------------------------------------------------------------------- /src/Emulators/atari800/cassette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cassette.c -------------------------------------------------------------------------------- /src/Emulators/atari800/cassette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cassette.h -------------------------------------------------------------------------------- /src/Emulators/atari800/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cfg.c -------------------------------------------------------------------------------- /src/Emulators/atari800/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cfg.h -------------------------------------------------------------------------------- /src/Emulators/atari800/colours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours.c -------------------------------------------------------------------------------- /src/Emulators/atari800/colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours.h -------------------------------------------------------------------------------- /src/Emulators/atari800/colours_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours_ntsc.c -------------------------------------------------------------------------------- /src/Emulators/atari800/colours_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours_ntsc.h -------------------------------------------------------------------------------- /src/Emulators/atari800/colours_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours_pal.c -------------------------------------------------------------------------------- /src/Emulators/atari800/colours_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/colours_pal.h -------------------------------------------------------------------------------- /src/Emulators/atari800/compfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/compfile.c -------------------------------------------------------------------------------- /src/Emulators/atari800/compfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/compfile.h -------------------------------------------------------------------------------- /src/Emulators/atari800/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cpu.c -------------------------------------------------------------------------------- /src/Emulators/atari800/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cpu.h -------------------------------------------------------------------------------- /src/Emulators/atari800/cycle_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cycle_map.c -------------------------------------------------------------------------------- /src/Emulators/atari800/cycle_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/cycle_map.h -------------------------------------------------------------------------------- /src/Emulators/atari800/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/devices.c -------------------------------------------------------------------------------- /src/Emulators/atari800/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/devices.h -------------------------------------------------------------------------------- /src/Emulators/atari800/emuos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/emuos.c -------------------------------------------------------------------------------- /src/Emulators/atari800/emuos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/emuos.h -------------------------------------------------------------------------------- /src/Emulators/atari800/esc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/esc.c -------------------------------------------------------------------------------- /src/Emulators/atari800/esc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/esc.h -------------------------------------------------------------------------------- /src/Emulators/atari800/filter_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/filter_ntsc.c -------------------------------------------------------------------------------- /src/Emulators/atari800/filter_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/filter_ntsc.h -------------------------------------------------------------------------------- /src/Emulators/atari800/gtia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/gtia.c -------------------------------------------------------------------------------- /src/Emulators/atari800/gtia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/gtia.h -------------------------------------------------------------------------------- /src/Emulators/atari800/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/ide.c -------------------------------------------------------------------------------- /src/Emulators/atari800/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/ide.h -------------------------------------------------------------------------------- /src/Emulators/atari800/ide_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/ide_internal.h -------------------------------------------------------------------------------- /src/Emulators/atari800/img_tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/img_tape.c -------------------------------------------------------------------------------- /src/Emulators/atari800/img_tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/img_tape.h -------------------------------------------------------------------------------- /src/Emulators/atari800/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/input.c -------------------------------------------------------------------------------- /src/Emulators/atari800/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/input.h -------------------------------------------------------------------------------- /src/Emulators/atari800/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/memory.c -------------------------------------------------------------------------------- /src/Emulators/atari800/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/memory.h -------------------------------------------------------------------------------- /src/Emulators/atari800/mzpokeysnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/mzpokeysnd.c -------------------------------------------------------------------------------- /src/Emulators/atari800/mzpokeysnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/mzpokeysnd.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pal_blending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pal_blending.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pal_blending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pal_blending.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_bb.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_bb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_bb.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_mio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_mio.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_mio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_mio.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_proto80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_proto80.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_proto80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_proto80.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_scsi.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_scsi.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_xld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_xld.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pbi_xld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pbi_xld.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pcjoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pcjoy.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pia.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pia.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pokey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokey.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pokey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokey.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pokeyrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokeyrec.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pokeyrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokeyrec.h -------------------------------------------------------------------------------- /src/Emulators/atari800/pokeysnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokeysnd.c -------------------------------------------------------------------------------- /src/Emulators/atari800/pokeysnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/pokeysnd.h -------------------------------------------------------------------------------- /src/Emulators/atari800/remez.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/remez.c -------------------------------------------------------------------------------- /src/Emulators/atari800/remez.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/remez.h -------------------------------------------------------------------------------- /src/Emulators/atari800/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/rtime.c -------------------------------------------------------------------------------- /src/Emulators/atari800/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/rtime.h -------------------------------------------------------------------------------- /src/Emulators/atari800/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/screen.c -------------------------------------------------------------------------------- /src/Emulators/atari800/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/screen.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-init.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-init.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-input.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-input.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-main.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-video.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sdl/a-video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sdl/a-video.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sio.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sio.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sndsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sndsave.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sndsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sndsave.h -------------------------------------------------------------------------------- /src/Emulators/atari800/statesav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/statesav.c -------------------------------------------------------------------------------- /src/Emulators/atari800/statesav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/statesav.h -------------------------------------------------------------------------------- /src/Emulators/atari800/sysrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sysrom.c -------------------------------------------------------------------------------- /src/Emulators/atari800/sysrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/sysrom.h -------------------------------------------------------------------------------- /src/Emulators/atari800/ui_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/ui_basic.c -------------------------------------------------------------------------------- /src/Emulators/atari800/ui_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/ui_basic.h -------------------------------------------------------------------------------- /src/Emulators/atari800/videomode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/videomode.c -------------------------------------------------------------------------------- /src/Emulators/atari800/videomode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/videomode.h -------------------------------------------------------------------------------- /src/Emulators/atari800/voicebox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/voicebox.c -------------------------------------------------------------------------------- /src/Emulators/atari800/voicebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/voicebox.h -------------------------------------------------------------------------------- /src/Emulators/atari800/votrax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/votrax.c -------------------------------------------------------------------------------- /src/Emulators/atari800/votrax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/votrax.h -------------------------------------------------------------------------------- /src/Emulators/atari800/votraxsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/votraxsnd.c -------------------------------------------------------------------------------- /src/Emulators/atari800/votraxsnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/votraxsnd.h -------------------------------------------------------------------------------- /src/Emulators/atari800/vtxsmpls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/vtxsmpls.inc -------------------------------------------------------------------------------- /src/Emulators/atari800/xep80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/xep80.c -------------------------------------------------------------------------------- /src/Emulators/atari800/xep80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/xep80.h -------------------------------------------------------------------------------- /src/Emulators/atari800/xep80_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/xep80_fonts.c -------------------------------------------------------------------------------- /src/Emulators/atari800/xep80_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/atari800/xep80_fonts.h -------------------------------------------------------------------------------- /src/Emulators/vice/ViceInterface/CDataAdaptersVice.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Emulators/vice/arch/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/blockdev.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/c64-hardsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/c64-hardsid.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/console.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/coproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/coproc.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/coproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/coproc.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/dynlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/dynlib.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/fullscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/fullscreen.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/joy.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/joy.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/kbd.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/kbd.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/lightpendrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/lightpendrv.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/lightpendrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/lightpendrv.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_c64hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_c64hw.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_c64hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_c64hw.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_common.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_common.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_debug.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_debug.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_drive.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_drive.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_ffmpeg.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_ffmpeg.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_help.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_help.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_midi.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_midi.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_mouse.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_mouse.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_ram.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_ram.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_reset.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_reset.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_rom.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_rom.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_rs232.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_rs232.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_rs232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_rs232.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_sid.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_sid.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_sound.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_sound.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_speed.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_speed.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_tape.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_tape.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_tfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_tfe.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_tfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_tfe.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_video.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/menu_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/menu_video.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/mousedrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/mousedrv.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/mousedrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/mousedrv.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/parsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/parsid.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rawnetarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rawnetarch.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rs232.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rs232.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rs232dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rs232dev.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rs232dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rs232dev.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rs232net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rs232net.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/rs232net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/rs232net.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/signals.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/socketimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/socketimpl.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/ui.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/ui.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uicmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uicmdline.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uifilereq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uifilereq.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uifilereq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uifilereq.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uihotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uihotkey.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uihotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uihotkey.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uimenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uimenu.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uimenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uimenu.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uimon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uimon.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uimsgbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uimsgbox.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uimsgbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uimsgbox.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uipause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uipause.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uipoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uipoll.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uipoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uipoll.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uistatusbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uistatusbar.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/uistatusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/uistatusbar.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/vicetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/vicetypes.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/video.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/videoarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/videoarch.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/vkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/vkbd.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/vkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/vkbd.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/vsidui_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/vsidui_sdl.h -------------------------------------------------------------------------------- /src/Emulators/vice/arch/vsyncarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/vsyncarch.c -------------------------------------------------------------------------------- /src/Emulators/vice/arch/x64sc_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/arch/x64sc_ui.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64-snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64-snapshot.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64-snapshot.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64_256k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64_256k.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64_256k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64_256k.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64bus.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64cart.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64cia.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64cia1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64cia1.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64cia2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64cia2.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64cpusc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64cpusc.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64datasette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64datasette.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64drive.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64embedded.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64export.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64fastiec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64fastiec.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64fastiec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64fastiec.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64gluelogic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64gluelogic.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64gluelogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64gluelogic.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64iec.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64iec.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64io.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64keyboard.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64keyboard.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64mem.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64meminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64meminit.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64meminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64meminit.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64memlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64memlimit.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64memlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64memlimit.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64memrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64memrom.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64memrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64memrom.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64memsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64memsc.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64model.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64parallel.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64parallel.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64pla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64pla.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64pla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64pla.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64printer.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64rom.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64rom.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64romset.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64rsuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64rsuser.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64rsuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64rsuser.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64scmodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64scmodel.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64sound.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/c64video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/c64video.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/c64acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/c64acia.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/crt.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/crt.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/daa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/daa.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/daa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/daa.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/dqbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/dqbb.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/dqbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/dqbb.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/exos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/exos.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/exos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/exos.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/final.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/final.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/final.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/final.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/gmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/gmod2.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/gmod2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/gmod2.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/gs.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/gs.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ide64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ide64.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ide64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ide64.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/kcs.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/kcs.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/mach5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/mach5.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/mach5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/mach5.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/mmc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/mmc64.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/mmc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/mmc64.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ocean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ocean.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ocean.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/reu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/reu.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/reu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/reu.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/rgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/rgcd.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/rgcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/rgcd.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ross.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/ross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/ross.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/stb.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/cart/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/cart/stb.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/musdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/musdrv.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/patchrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/patchrom.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/patchrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/patchrom.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/plus256k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/plus256k.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/plus256k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/plus256k.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/plus60k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/plus60k.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/plus60k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/plus60k.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/psid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/psid.c -------------------------------------------------------------------------------- /src/Emulators/vice/c64/psid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/psid.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/psiddrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/psiddrv.h -------------------------------------------------------------------------------- /src/Emulators/vice/c64/reloc65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/c64/reloc65.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/ata.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/ata.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/ciacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/ciacore.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/ciatimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/ciatimer.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/ciatimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/ciatimer.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/cs8900.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/cs8900.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/cs8900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/cs8900.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/fmopl.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/fmopl.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/m93c86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/m93c86.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/m93c86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/m93c86.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/riotcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/riotcore.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/t6721.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/t6721.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/t6721.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/t6721.h -------------------------------------------------------------------------------- /src/Emulators/vice/core/tpicore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/tpicore.c -------------------------------------------------------------------------------- /src/Emulators/vice/core/viacore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/core/viacore.c -------------------------------------------------------------------------------- /src/Emulators/vice/diskimage/x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/diskimage/x64.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drive.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drive.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drivecpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drivecpu.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drivecpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drivecpu.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drivemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drivemem.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/drivemem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/drivemem.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/driverom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/driverom.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/driverom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/driverom.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iec.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iec/ciad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iec/ciad.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iec/fdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iec/fdd.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iec/fdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iec/fdd.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iec/iec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iec/iec.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/iecieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/iecieee.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/ieee.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/ieee/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/ieee/fdc.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/ieee/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/ieee/fdc.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/rotation.c -------------------------------------------------------------------------------- /src/Emulators/vice/drive/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/rotation.h -------------------------------------------------------------------------------- /src/Emulators/vice/drive/viad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/drive/viad.h -------------------------------------------------------------------------------- /src/Emulators/vice/fileio/cbmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/fileio/cbmfile.c -------------------------------------------------------------------------------- /src/Emulators/vice/fileio/cbmfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/fileio/cbmfile.h -------------------------------------------------------------------------------- /src/Emulators/vice/fileio/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/fileio/fileio.c -------------------------------------------------------------------------------- /src/Emulators/vice/fileio/p00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/fileio/p00.c -------------------------------------------------------------------------------- /src/Emulators/vice/fileio/p00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/fileio/p00.h -------------------------------------------------------------------------------- /src/Emulators/vice/iecbus/iecbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/iecbus/iecbus.c -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/bbrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/bbrtc.c -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/bbrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/bbrtc.h -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/cx21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/cx21.c -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/cx21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/cx21.h -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/cx85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/cx85.c -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/cx85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/cx85.h -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/mouse.c -------------------------------------------------------------------------------- /src/Emulators/vice/joyport/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/joyport/mouse.h -------------------------------------------------------------------------------- /src/Emulators/vice/lib/p64/p64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/lib/p64/p64.c -------------------------------------------------------------------------------- /src/Emulators/vice/lib/p64/p64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/lib/p64/p64.h -------------------------------------------------------------------------------- /src/Emulators/vice/monitor/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/monitor/asm.h -------------------------------------------------------------------------------- /src/Emulators/vice/monitor/asmz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/monitor/asmz80.c -------------------------------------------------------------------------------- /src/Emulators/vice/monitor/mon_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/monitor/mon_ui.c -------------------------------------------------------------------------------- /src/Emulators/vice/monitor/mon_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/monitor/mon_ui.h -------------------------------------------------------------------------------- /src/Emulators/vice/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/raster/raster.c -------------------------------------------------------------------------------- /src/Emulators/vice/raster/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/raster/raster.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/6510core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/6510core.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/acia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/acia.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/alarm.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/alarm.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/archapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/archapi.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/attach.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/attach.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/autostart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/autostart.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/autostart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/autostart.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/blockdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/blockdev.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/c64basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/c64basic.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/c64kernal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/c64kernal.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/c64ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/c64ui.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cartio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cartio.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cartridge.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cbmdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cbmdos.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/cbmdos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cbmdos.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cbmimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cbmimage.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/cbmimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cbmimage.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/charset.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/charset.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cia.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/clipboard.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/clipboard.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/clkguard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/clkguard.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/clkguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/clkguard.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cmdline.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/cmdline.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/color.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/color.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/console.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/datasette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/datasette.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/datasette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/datasette.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/debug.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/debug.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/diskimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/diskimage.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/dma.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/dma.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/dynlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/dynlib.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/embedded.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/embedded.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/event.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/export.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fileio.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/findpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/findpath.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/findpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/findpath.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/fixpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fixpoint.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/fixpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fixpoint.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/flash040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/flash040.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/fliplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fliplist.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/fliplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fliplist.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/fsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/fsdevice.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/gcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/gcr.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/gcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/gcr.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/gfxoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/gfxoutput.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/h6809regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/h6809regs.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/hardsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/hardsid.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/iecbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/iecbus.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/iecdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/iecdrive.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/info.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/info.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/init.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/init.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/interrupt.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/interrupt.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/ioutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/ioutil.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/ioutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/ioutil.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/kbdbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/kbdbuf.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/kbdbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/kbdbuf.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/keyboard.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/keyboard.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/lib.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/lib.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/libm_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/libm_math.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/libm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/libm_math.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/log.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/log.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/machine.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/machine.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/main.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/main.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/maincpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/maincpu.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/mem.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/midi.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/midi.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/mididrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/mididrv.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/monitor.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/mos6510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/mos6510.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/network.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/network.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/palette.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/palette.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/parallel.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/parsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/parsid.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/printer.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/r65c02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/r65c02.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/ram.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/ram.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rawfile.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/rawfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rawfile.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/rawnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rawnet.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/rawnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rawnet.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/resources.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/resources.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/riot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/riot.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/romset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/romset.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/romset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/romset.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/rs232drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rs232drv.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/rsuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/rsuser.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/serial.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/signals.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/snapshot.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/snapshot.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/socket.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/sound.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/sound.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/ssi2001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/ssi2001.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/sysfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/sysfile.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/sysfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/sysfile.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/tap.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/tape.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/tpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/tpi.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/translate.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/translate.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/traps.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/traps.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/uiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/uiapi.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/uicmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/uicmdline.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/uicolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/uicolor.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/uimon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/uimon.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/util.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/util.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/version.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/via.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vice.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vice_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vice_sdl.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vicii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vicii.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/video.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/viewport.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vsidui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vsidui.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vsync.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/vsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vsync.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/vsyncapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/vsyncapi.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/wdc65816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/wdc65816.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/z80regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/z80regs.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/zfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/zfile.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/zfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/zfile.h -------------------------------------------------------------------------------- /src/Emulators/vice/root/zipcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/zipcode.c -------------------------------------------------------------------------------- /src/Emulators/vice/root/zipcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/root/zipcode.h -------------------------------------------------------------------------------- /src/Emulators/vice/rs232drv/rs232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rs232drv/rs232.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/bq4830y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/bq4830y.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/bq4830y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/bq4830y.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1216e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1216e.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1216e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1216e.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds12c887.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds12c887.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds12c887.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds12c887.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1307.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1307.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1602.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1602.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/ds1602.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/ds1602.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/pcf8583.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/pcf8583.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/pcf8583.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/pcf8583.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/rtc-58321a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/rtc-58321a.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/rtc-58321a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/rtc-58321a.h -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/rtc.c -------------------------------------------------------------------------------- /src/Emulators/vice/rtc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/rtc/rtc.h -------------------------------------------------------------------------------- /src/Emulators/vice/serial/fsdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/serial/fsdrive.c -------------------------------------------------------------------------------- /src/Emulators/vice/serial/fsdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/serial/fsdrive.h -------------------------------------------------------------------------------- /src/Emulators/vice/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/serial/serial.c -------------------------------------------------------------------------------- /src/Emulators/vice/sid/fastsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/fastsid.c -------------------------------------------------------------------------------- /src/Emulators/vice/sid/fastsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/fastsid.h -------------------------------------------------------------------------------- /src/Emulators/vice/sid/resid-fp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/resid-fp.cpp -------------------------------------------------------------------------------- /src/Emulators/vice/sid/resid-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/resid-fp.h -------------------------------------------------------------------------------- /src/Emulators/vice/sid/resid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/resid.cpp -------------------------------------------------------------------------------- /src/Emulators/vice/sid/resid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/resid.h -------------------------------------------------------------------------------- /src/Emulators/vice/sid/sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/sid.c -------------------------------------------------------------------------------- /src/Emulators/vice/sid/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/sid.h -------------------------------------------------------------------------------- /src/Emulators/vice/sid/wave6581.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/wave6581.h -------------------------------------------------------------------------------- /src/Emulators/vice/sid/wave8580.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/sid/wave8580.h -------------------------------------------------------------------------------- /src/Emulators/vice/tape/t64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/t64.c -------------------------------------------------------------------------------- /src/Emulators/vice/tape/t64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/t64.h -------------------------------------------------------------------------------- /src/Emulators/vice/tape/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/tap.c -------------------------------------------------------------------------------- /src/Emulators/vice/tape/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/tape.c -------------------------------------------------------------------------------- /src/Emulators/vice/tape/tapeimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/tapeimage.c -------------------------------------------------------------------------------- /src/Emulators/vice/tape/tapeimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/tape/tapeimage.h -------------------------------------------------------------------------------- /src/Emulators/vice/vdrive/vdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/vdrive/vdrive.c -------------------------------------------------------------------------------- /src/Emulators/vice/vdrive/vdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/vdrive/vdrive.h -------------------------------------------------------------------------------- /src/Emulators/vice/viciisc/vicii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Emulators/vice/viciisc/vicii.c -------------------------------------------------------------------------------- /src/Plugins/C64D_InitPlugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/C64D_InitPlugins.cpp -------------------------------------------------------------------------------- /src/Plugins/C64D_InitPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/C64D_InitPlugins.h -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/cwsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/cwsid.h -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gfile.c -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gfile.h -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/ghelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/ghelp.c -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gplay.c -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gplay.h -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gsid.h -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gsong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gsong.c -------------------------------------------------------------------------------- /src/Plugins/GoatTracker/gt2/gsong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Plugins/GoatTracker/gt2/gsong.h -------------------------------------------------------------------------------- /src/Remote/CDebuggerServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Remote/CDebuggerServer.cpp -------------------------------------------------------------------------------- /src/Remote/CDebuggerServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Remote/CDebuggerServer.h -------------------------------------------------------------------------------- /src/Remote/CDebuggerServerApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Remote/CDebuggerServerApi.cpp -------------------------------------------------------------------------------- /src/Remote/CDebuggerServerApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Remote/CDebuggerServerApi.h -------------------------------------------------------------------------------- /src/RetroDebuggerAppInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/RetroDebuggerAppInit.cpp -------------------------------------------------------------------------------- /src/RetroDebuggerAppInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/RetroDebuggerAppInit.h -------------------------------------------------------------------------------- /src/Screens/CMainMenuHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CMainMenuHelper.cpp -------------------------------------------------------------------------------- /src/Screens/CMainMenuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CMainMenuHelper.h -------------------------------------------------------------------------------- /src/Screens/CViewAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewAbout.cpp -------------------------------------------------------------------------------- /src/Screens/CViewAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewAbout.h -------------------------------------------------------------------------------- /src/Screens/CViewC64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewC64.cpp -------------------------------------------------------------------------------- /src/Screens/CViewC64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewC64.h -------------------------------------------------------------------------------- /src/Screens/CViewColodore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewColodore.cpp -------------------------------------------------------------------------------- /src/Screens/CViewColodore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewColodore.h -------------------------------------------------------------------------------- /src/Screens/CViewMainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewMainMenu.cpp -------------------------------------------------------------------------------- /src/Screens/CViewMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewMainMenu.h -------------------------------------------------------------------------------- /src/Screens/CViewSettingsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewSettingsMenu.cpp -------------------------------------------------------------------------------- /src/Screens/CViewSettingsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewSettingsMenu.h -------------------------------------------------------------------------------- /src/Screens/CViewSnapshots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewSnapshots.cpp -------------------------------------------------------------------------------- /src/Screens/CViewSnapshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Screens/CViewSnapshots.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-avl.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-encoding.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-encoding.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-error.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-error.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-eval.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-eval.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-getopt.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-libtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-libtree.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-misc.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-misc.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-my_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-my_getopt.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-my_getopt.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-opcodes.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-opcodes.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-section.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-section.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-ternary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-ternary.c -------------------------------------------------------------------------------- /src/Tools/64tass/64tass-ternary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass-ternary.h -------------------------------------------------------------------------------- /src/Tools/64tass/64tass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/64tass/64tass.c -------------------------------------------------------------------------------- /src/Tools/C64ColodoreScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64ColodoreScreen.cpp -------------------------------------------------------------------------------- /src/Tools/C64ColodoreScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64ColodoreScreen.h -------------------------------------------------------------------------------- /src/Tools/C64CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64CommandLine.cpp -------------------------------------------------------------------------------- /src/Tools/C64CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64CommandLine.h -------------------------------------------------------------------------------- /src/Tools/C64FileDataAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64FileDataAdapter.cpp -------------------------------------------------------------------------------- /src/Tools/C64FileDataAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64FileDataAdapter.h -------------------------------------------------------------------------------- /src/Tools/C64KeyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64KeyMap.cpp -------------------------------------------------------------------------------- /src/Tools/C64KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64KeyMap.h -------------------------------------------------------------------------------- /src/Tools/C64KeyboardShortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64KeyboardShortcuts.cpp -------------------------------------------------------------------------------- /src/Tools/C64KeyboardShortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64KeyboardShortcuts.h -------------------------------------------------------------------------------- /src/Tools/C64Opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64Opcodes.h -------------------------------------------------------------------------------- /src/Tools/C64Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64Palette.cpp -------------------------------------------------------------------------------- /src/Tools/C64Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64Palette.h -------------------------------------------------------------------------------- /src/Tools/C64SIDDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SIDDump.cpp -------------------------------------------------------------------------------- /src/Tools/C64SIDDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SIDDump.h -------------------------------------------------------------------------------- /src/Tools/C64SIDFrequencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SIDFrequencies.cpp -------------------------------------------------------------------------------- /src/Tools/C64SIDFrequencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SIDFrequencies.h -------------------------------------------------------------------------------- /src/Tools/C64SettingsStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SettingsStorage.cpp -------------------------------------------------------------------------------- /src/Tools/C64SettingsStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SettingsStorage.h -------------------------------------------------------------------------------- /src/Tools/C64SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SharedMemory.cpp -------------------------------------------------------------------------------- /src/Tools/C64SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64SharedMemory.h -------------------------------------------------------------------------------- /src/Tools/C64Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64Tools.cpp -------------------------------------------------------------------------------- /src/Tools/C64Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/C64Tools.h -------------------------------------------------------------------------------- /src/Tools/CGuiLockableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/CGuiLockableList.cpp -------------------------------------------------------------------------------- /src/Tools/CGuiLockableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/CGuiLockableList.h -------------------------------------------------------------------------------- /src/Tools/CSnapshotsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/CSnapshotsManager.cpp -------------------------------------------------------------------------------- /src/Tools/CSnapshotsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/CSnapshotsManager.h -------------------------------------------------------------------------------- /src/Tools/TextEditor/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/TextEditor/TextEditor.cpp -------------------------------------------------------------------------------- /src/Tools/TextEditor/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/TextEditor/TextEditor.h -------------------------------------------------------------------------------- /src/Tools/asap/AtariAsap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/asap/AtariAsap.cpp -------------------------------------------------------------------------------- /src/Tools/asap/AtariAsap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/asap/AtariAsap.h -------------------------------------------------------------------------------- /src/Tools/asap/asap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/asap/asap.c -------------------------------------------------------------------------------- /src/Tools/asap/asap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/asap/asap.h -------------------------------------------------------------------------------- /src/Tools/asm6/asm6f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/asm6/asm6f.c -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-log.h -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-match.c -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-match.h -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-radix.c -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-radix.h -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer-sfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer-sfx.h -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer.c -------------------------------------------------------------------------------- /src/Tools/exomizer/exomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/exomizer/exomizer.h -------------------------------------------------------------------------------- /src/Tools/libpsid64/libpsid-sidid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/libpsid64/libpsid-sidid.h -------------------------------------------------------------------------------- /src/Tools/libpsid64/libpsid-theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/libpsid64/libpsid-theme.h -------------------------------------------------------------------------------- /src/Tools/libpsid64/psid64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/libpsid64/psid64.h -------------------------------------------------------------------------------- /src/Tools/sidplay/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/Buffer.h -------------------------------------------------------------------------------- /src/Tools/sidplay/SidTune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/SidTune.h -------------------------------------------------------------------------------- /src/Tools/sidplay/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/SmartPtr.h -------------------------------------------------------------------------------- /src/Tools/sidplay/sidconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidconfig.h -------------------------------------------------------------------------------- /src/Tools/sidplay/sidconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidconfig.h.in -------------------------------------------------------------------------------- /src/Tools/sidplay/sidendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidendian.h -------------------------------------------------------------------------------- /src/Tools/sidplay/sidint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidint.h -------------------------------------------------------------------------------- /src/Tools/sidplay/sidtune/MUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidtune/MUS.cpp -------------------------------------------------------------------------------- /src/Tools/sidplay/sidtune/PP20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidtune/PP20.cpp -------------------------------------------------------------------------------- /src/Tools/sidplay/sidtune/PP20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidtune/PP20.h -------------------------------------------------------------------------------- /src/Tools/sidplay/sidtune/prg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidtune/prg.cpp -------------------------------------------------------------------------------- /src/Tools/sidplay/sidtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/sidtypes.h -------------------------------------------------------------------------------- /src/Tools/sidplay/utils/libini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/sidplay/utils/libini.h -------------------------------------------------------------------------------- /src/Tools/stilview/stil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/stilview/stil.cpp -------------------------------------------------------------------------------- /src/Tools/stilview/stil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/stilview/stil.h -------------------------------------------------------------------------------- /src/Tools/stilview/stilcomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/stilview/stilcomm.cpp -------------------------------------------------------------------------------- /src/Tools/stilview/stilcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/stilview/stilcomm.h -------------------------------------------------------------------------------- /src/Tools/stilview/stildefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Tools/stilview/stildefs.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64Disassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64Disassembly.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64KeyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64KeyMap.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64KeyMap.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64Screen.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64Screen.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateCIA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateCIA.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateCIA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateCIA.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateCPU.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateCPU.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateREU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateREU.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateREU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateREU.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateSID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateSID.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateSID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateSID.h -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateVIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateVIC.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewC64StateVIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewC64StateVIC.h -------------------------------------------------------------------------------- /src/Views/C64/CViewDrive1541Led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewDrive1541Led.cpp -------------------------------------------------------------------------------- /src/Views/C64/CViewDrive1541Led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/C64/CViewDrive1541Led.h -------------------------------------------------------------------------------- /src/Views/CDataAddressEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CDataAddressEditBox.cpp -------------------------------------------------------------------------------- /src/Views/CDataAddressEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CDataAddressEditBox.h -------------------------------------------------------------------------------- /src/Views/CDataAddressEditBoxHex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CDataAddressEditBoxHex.h -------------------------------------------------------------------------------- /src/Views/CMainMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CMainMenuBar.cpp -------------------------------------------------------------------------------- /src/Views/CMainMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CMainMenuBar.h -------------------------------------------------------------------------------- /src/Views/CViewBaseStateCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewBaseStateCPU.cpp -------------------------------------------------------------------------------- /src/Views/CViewBaseStateCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewBaseStateCPU.h -------------------------------------------------------------------------------- /src/Views/CViewBreakpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewBreakpoints.cpp -------------------------------------------------------------------------------- /src/Views/CViewBreakpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewBreakpoints.h -------------------------------------------------------------------------------- /src/Views/CViewDataDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataDump.cpp -------------------------------------------------------------------------------- /src/Views/CViewDataDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataDump.h -------------------------------------------------------------------------------- /src/Views/CViewDataMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataMap.cpp -------------------------------------------------------------------------------- /src/Views/CViewDataMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataMap.h -------------------------------------------------------------------------------- /src/Views/CViewDataMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataMonitor.cpp -------------------------------------------------------------------------------- /src/Views/CViewDataMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataMonitor.h -------------------------------------------------------------------------------- /src/Views/CViewDataPlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataPlot.cpp -------------------------------------------------------------------------------- /src/Views/CViewDataPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataPlot.h -------------------------------------------------------------------------------- /src/Views/CViewDataWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataWatch.cpp -------------------------------------------------------------------------------- /src/Views/CViewDataWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDataWatch.h -------------------------------------------------------------------------------- /src/Views/CViewDebugEventsHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDebugEventsHistory.h -------------------------------------------------------------------------------- /src/Views/CViewDisassembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDisassembly.cpp -------------------------------------------------------------------------------- /src/Views/CViewDisassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewDisassembly.h -------------------------------------------------------------------------------- /src/Views/CViewEmulationCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewEmulationCounters.h -------------------------------------------------------------------------------- /src/Views/CViewEmulationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewEmulationState.cpp -------------------------------------------------------------------------------- /src/Views/CViewEmulationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewEmulationState.h -------------------------------------------------------------------------------- /src/Views/CViewEmulatorScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewEmulatorScreen.cpp -------------------------------------------------------------------------------- /src/Views/CViewEmulatorScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewEmulatorScreen.h -------------------------------------------------------------------------------- /src/Views/CViewFileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewFileBrowser.cpp -------------------------------------------------------------------------------- /src/Views/CViewFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewFileBrowser.h -------------------------------------------------------------------------------- /src/Views/CViewInputEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewInputEvents.cpp -------------------------------------------------------------------------------- /src/Views/CViewInputEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewInputEvents.h -------------------------------------------------------------------------------- /src/Views/CViewMonitorConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewMonitorConsole.cpp -------------------------------------------------------------------------------- /src/Views/CViewMonitorConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewMonitorConsole.h -------------------------------------------------------------------------------- /src/Views/CViewSourceCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewSourceCode.cpp -------------------------------------------------------------------------------- /src/Views/CViewSourceCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewSourceCode.h -------------------------------------------------------------------------------- /src/Views/CViewTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewTimeline.cpp -------------------------------------------------------------------------------- /src/Views/CViewTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/CViewTimeline.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesPpuOam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesPpuOam.cpp -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesPpuOam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesPpuOam.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesPpuPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesPpuPalette.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesPpuPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesPpuPatterns.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesScreen.cpp -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesScreen.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStateAPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStateAPU.cpp -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStateAPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStateAPU.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStateCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStateCPU.cpp -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStateCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStateCPU.h -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStatePPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStatePPU.cpp -------------------------------------------------------------------------------- /src/Views/Nes/CViewNesStatePPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/src/Views/Nes/CViewNesStatePPU.h -------------------------------------------------------------------------------- /tools/Exomizer-Decrunch/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/tools/Exomizer-Decrunch/README.txt -------------------------------------------------------------------------------- /tools/Exomizer-Decrunch/c64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/tools/Exomizer-Decrunch/c64.cfg -------------------------------------------------------------------------------- /tools/Exomizer-Decrunch/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/tools/Exomizer-Decrunch/main.s -------------------------------------------------------------------------------- /tools/c64d-champ/c64d-champ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slajerek/RetroDebugger/HEAD/tools/c64d-champ/c64d-champ.rb --------------------------------------------------------------------------------