├── Common └── Plugins │ ├── Dasm6502.csv │ ├── Dasm65C02.csv │ ├── Dasm65C816.csv │ ├── Dasm6800.csv │ ├── Dasm6809.csv │ ├── Dasm8085.csv │ ├── DasmDataInspectorPlugin.ini │ ├── DasmSPC700.csv │ └── DasmW65C02S.csv ├── LICENSE ├── README.md ├── Win32 └── Plugins │ └── DasmDataInspectorPlugin.dll ├── Win64 └── Plugins │ └── DasmDataInspectorPlugin.dll └── src ├── .gitignore ├── CpuDefinition.pas ├── DasmConverter.pas ├── DasmDataInspectorPlugin.dpr ├── DataInspectorPluginInterface.inc ├── DataInspectorPluginServer.pas └── DataInspectorShared.pas /Common/Plugins/Dasm6502.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm6502.csv -------------------------------------------------------------------------------- /Common/Plugins/Dasm65C02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm65C02.csv -------------------------------------------------------------------------------- /Common/Plugins/Dasm65C816.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm65C816.csv -------------------------------------------------------------------------------- /Common/Plugins/Dasm6800.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm6800.csv -------------------------------------------------------------------------------- /Common/Plugins/Dasm6809.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm6809.csv -------------------------------------------------------------------------------- /Common/Plugins/Dasm8085.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/Dasm8085.csv -------------------------------------------------------------------------------- /Common/Plugins/DasmDataInspectorPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/DasmDataInspectorPlugin.ini -------------------------------------------------------------------------------- /Common/Plugins/DasmSPC700.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/DasmSPC700.csv -------------------------------------------------------------------------------- /Common/Plugins/DasmW65C02S.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Common/Plugins/DasmW65C02S.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Win32/Plugins/DasmDataInspectorPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Win32/Plugins/DasmDataInspectorPlugin.dll -------------------------------------------------------------------------------- /Win64/Plugins/DasmDataInspectorPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/Win64/Plugins/DasmDataInspectorPlugin.dll -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CpuDefinition.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/CpuDefinition.pas -------------------------------------------------------------------------------- /src/DasmConverter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/DasmConverter.pas -------------------------------------------------------------------------------- /src/DasmDataInspectorPlugin.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/DasmDataInspectorPlugin.dpr -------------------------------------------------------------------------------- /src/DataInspectorPluginInterface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/DataInspectorPluginInterface.inc -------------------------------------------------------------------------------- /src/DataInspectorPluginServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/DataInspectorPluginServer.pas -------------------------------------------------------------------------------- /src/DataInspectorShared.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigicoolThings/HxD_DasmDataInspectorPlugin/HEAD/src/DataInspectorShared.pas --------------------------------------------------------------------------------