├── .gitignore ├── CSpectPlugins ├── CSpectPlugins.sln └── CSpectPlugins │ ├── CSpectPlugins.vcxproj │ ├── CSpectPlugins.vcxproj.filters │ └── CSpectPlugins.vcxproj.user ├── CopperDissassembler ├── App.config ├── CopperDissForm.Designer.cs ├── CopperDissForm.cs ├── CopperDissForm.resx ├── CopperDissassembler.csproj ├── CopperPlugin.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── DeZogPlugin ├── .gitignore ├── Changelog.md ├── Commands.cs ├── DeZogPlugin.csproj ├── DeZogPlugin.dll.config ├── DeZogPlugin.sln ├── License.md ├── Log.cs ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Readme.md ├── Server.cs └── Settings.cs ├── DebugOut ├── DBGOut.cs ├── DebugOut.csproj └── Properties │ └── AssemblyInfo.cs ├── FileAssociate ├── App.config ├── FileAssociate.csproj ├── FileAssociatePlugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── RegFunctions.cs ├── LICENSE ├── NextRegisterViewer ├── App.config ├── NextRegisterViewer.cs ├── NextRegisterViewer.csproj ├── NextRegisterViewerForm.Designer.cs ├── NextRegisterViewerForm.cs ├── NextRegisterViewerForm.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegDetails.cs └── TTItem.cs ├── Plugin ├── Function.cs ├── IFileIO.cs ├── Plugin.csproj ├── Properties │ └── AssemblyInfo.cs ├── SSprite.cs ├── Z80Regs.cs ├── iCSpect.cs └── iPlugin.cs ├── Profiler ├── App.config ├── Profiler.csproj ├── ProfilerForm.Designer.cs ├── ProfilerForm.cs ├── ProfilerForm.resx ├── ProfilerPlugin.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── SpriteViewer ├── App.config ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SpriteViewer.csproj ├── SpriteViewerForm.Designer.cs ├── SpriteViewerForm.cs ├── SpriteViewerForm.resx ├── SpriteViewerPlugin.cs ├── ZXPalette.cs └── ZXSprite.cs ├── esxDOS ├── CMD_Packet.cs ├── CRST8.cs ├── FileHandle.cs ├── HDFileSystem.cs ├── Properties │ └── AssemblyInfo.cs └── esxDOS.csproj └── i2C_Sample ├── Properties └── AssemblyInfo.cs ├── i2C_NULL_Device.cs └── i2C_Sample.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CSpectPlugins/CSpectPlugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CSpectPlugins/CSpectPlugins.sln -------------------------------------------------------------------------------- /CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj -------------------------------------------------------------------------------- /CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj.filters -------------------------------------------------------------------------------- /CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CSpectPlugins/CSpectPlugins/CSpectPlugins.vcxproj.user -------------------------------------------------------------------------------- /CopperDissassembler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/App.config -------------------------------------------------------------------------------- /CopperDissassembler/CopperDissForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/CopperDissForm.Designer.cs -------------------------------------------------------------------------------- /CopperDissassembler/CopperDissForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/CopperDissForm.cs -------------------------------------------------------------------------------- /CopperDissassembler/CopperDissForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/CopperDissForm.resx -------------------------------------------------------------------------------- /CopperDissassembler/CopperDissassembler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/CopperDissassembler.csproj -------------------------------------------------------------------------------- /CopperDissassembler/CopperPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/CopperPlugin.cs -------------------------------------------------------------------------------- /CopperDissassembler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CopperDissassembler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CopperDissassembler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/Properties/Resources.resx -------------------------------------------------------------------------------- /CopperDissassembler/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CopperDissassembler/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/CopperDissassembler/Properties/Settings.settings -------------------------------------------------------------------------------- /DeZogPlugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/.gitignore -------------------------------------------------------------------------------- /DeZogPlugin/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Changelog.md -------------------------------------------------------------------------------- /DeZogPlugin/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Commands.cs -------------------------------------------------------------------------------- /DeZogPlugin/DeZogPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/DeZogPlugin.csproj -------------------------------------------------------------------------------- /DeZogPlugin/DeZogPlugin.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/DeZogPlugin.dll.config -------------------------------------------------------------------------------- /DeZogPlugin/DeZogPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/DeZogPlugin.sln -------------------------------------------------------------------------------- /DeZogPlugin/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/License.md -------------------------------------------------------------------------------- /DeZogPlugin/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Log.cs -------------------------------------------------------------------------------- /DeZogPlugin/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Main.cs -------------------------------------------------------------------------------- /DeZogPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeZogPlugin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Readme.md -------------------------------------------------------------------------------- /DeZogPlugin/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Server.cs -------------------------------------------------------------------------------- /DeZogPlugin/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DeZogPlugin/Settings.cs -------------------------------------------------------------------------------- /DebugOut/DBGOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DebugOut/DBGOut.cs -------------------------------------------------------------------------------- /DebugOut/DebugOut.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DebugOut/DebugOut.csproj -------------------------------------------------------------------------------- /DebugOut/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/DebugOut/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileAssociate/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/App.config -------------------------------------------------------------------------------- /FileAssociate/FileAssociate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/FileAssociate.csproj -------------------------------------------------------------------------------- /FileAssociate/FileAssociatePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/FileAssociatePlugin.cs -------------------------------------------------------------------------------- /FileAssociate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileAssociate/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FileAssociate/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/Properties/Resources.resx -------------------------------------------------------------------------------- /FileAssociate/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FileAssociate/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/Properties/Settings.settings -------------------------------------------------------------------------------- /FileAssociate/RegFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/FileAssociate/RegFunctions.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /NextRegisterViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/App.config -------------------------------------------------------------------------------- /NextRegisterViewer/NextRegisterViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/NextRegisterViewer.cs -------------------------------------------------------------------------------- /NextRegisterViewer/NextRegisterViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/NextRegisterViewer.csproj -------------------------------------------------------------------------------- /NextRegisterViewer/NextRegisterViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/NextRegisterViewerForm.Designer.cs -------------------------------------------------------------------------------- /NextRegisterViewer/NextRegisterViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/NextRegisterViewerForm.cs -------------------------------------------------------------------------------- /NextRegisterViewer/NextRegisterViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/NextRegisterViewerForm.resx -------------------------------------------------------------------------------- /NextRegisterViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NextRegisterViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NextRegisterViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /NextRegisterViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NextRegisterViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /NextRegisterViewer/RegDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/RegDetails.cs -------------------------------------------------------------------------------- /NextRegisterViewer/TTItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/NextRegisterViewer/TTItem.cs -------------------------------------------------------------------------------- /Plugin/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/Function.cs -------------------------------------------------------------------------------- /Plugin/IFileIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/IFileIO.cs -------------------------------------------------------------------------------- /Plugin/Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/Plugin.csproj -------------------------------------------------------------------------------- /Plugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugin/SSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/SSprite.cs -------------------------------------------------------------------------------- /Plugin/Z80Regs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/Z80Regs.cs -------------------------------------------------------------------------------- /Plugin/iCSpect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/iCSpect.cs -------------------------------------------------------------------------------- /Plugin/iPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Plugin/iPlugin.cs -------------------------------------------------------------------------------- /Profiler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/App.config -------------------------------------------------------------------------------- /Profiler/Profiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Profiler.csproj -------------------------------------------------------------------------------- /Profiler/ProfilerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/ProfilerForm.Designer.cs -------------------------------------------------------------------------------- /Profiler/ProfilerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/ProfilerForm.cs -------------------------------------------------------------------------------- /Profiler/ProfilerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/ProfilerForm.resx -------------------------------------------------------------------------------- /Profiler/ProfilerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/ProfilerPlugin.cs -------------------------------------------------------------------------------- /Profiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Profiler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Profiler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Properties/Resources.resx -------------------------------------------------------------------------------- /Profiler/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Profiler/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/Profiler/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/README.md -------------------------------------------------------------------------------- /SpriteViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/App.config -------------------------------------------------------------------------------- /SpriteViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpriteViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SpriteViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /SpriteViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SpriteViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /SpriteViewer/SpriteViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/SpriteViewer.csproj -------------------------------------------------------------------------------- /SpriteViewer/SpriteViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/SpriteViewerForm.Designer.cs -------------------------------------------------------------------------------- /SpriteViewer/SpriteViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/SpriteViewerForm.cs -------------------------------------------------------------------------------- /SpriteViewer/SpriteViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/SpriteViewerForm.resx -------------------------------------------------------------------------------- /SpriteViewer/SpriteViewerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/SpriteViewerPlugin.cs -------------------------------------------------------------------------------- /SpriteViewer/ZXPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/ZXPalette.cs -------------------------------------------------------------------------------- /SpriteViewer/ZXSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/SpriteViewer/ZXSprite.cs -------------------------------------------------------------------------------- /esxDOS/CMD_Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/CMD_Packet.cs -------------------------------------------------------------------------------- /esxDOS/CRST8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/CRST8.cs -------------------------------------------------------------------------------- /esxDOS/FileHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/FileHandle.cs -------------------------------------------------------------------------------- /esxDOS/HDFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/HDFileSystem.cs -------------------------------------------------------------------------------- /esxDOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /esxDOS/esxDOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/esxDOS/esxDOS.csproj -------------------------------------------------------------------------------- /i2C_Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/i2C_Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /i2C_Sample/i2C_NULL_Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/i2C_Sample/i2C_NULL_Device.cs -------------------------------------------------------------------------------- /i2C_Sample/i2C_Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikedailly/CSpectPlugins/HEAD/i2C_Sample/i2C_Sample.csproj --------------------------------------------------------------------------------