├── .gitignore ├── ACME.sln ├── ACME.vcxproj ├── ACME.vcxproj.filters ├── ACME.vcxproj.user ├── ACME_Lib ├── 6502 │ ├── Help.txt │ └── std.a ├── 65816 │ ├── Help.txt │ └── std.a └── Own │ └── Help.txt ├── CleanProject.bat ├── CleanProjectFully.bat ├── CleanProjectFullyWithAttrib.bat ├── DoBackup.bat ├── Done.txt ├── FeatureEditor.bat ├── README.md ├── ReadMe.txt ├── Release ├── ACME.exe ├── python39.dll └── python39.zip ├── RunTests.bat ├── TODO.txt ├── Test.a ├── Test.prg ├── TestACME.a ├── TestACME.prg ├── TestForForwardReference.a ├── TestForForwardReference.prg ├── TestLabelDefined.a ├── TestLabelRedefinition.a ├── TestPython.a ├── TestPython.prg ├── TestPython.py ├── TestPythonBin1.a ├── TestPythonBin2.a ├── TestPythonBin3.a ├── TestPythonBin4.a ├── VICEPDBMonitor ├── AcmePDBRandD.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssertDataSource.cs ├── BreakPointDataSource.cs ├── BreakPointDispatcher.cs ├── C128ViewModel.cs ├── C64MemDump.cs ├── C64RAM.cs ├── CharView.xaml ├── CharView.xaml.cs ├── ChisViewer.xaml ├── ChisViewer.xaml.cs ├── ContextDataSource.cs ├── Done.txt ├── EnumMatchToBooleanConverter.cs ├── FunctionJSONRAndD.cs ├── IMemDump.cs ├── IPDBReaderAndDisplay.cs ├── IRegisterSet.cs ├── LiveWatch.xaml ├── LiveWatch.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MemCalc.xaml ├── MemCalc.xaml.cs ├── MemoryView.xaml ├── MemoryView.xaml.cs ├── MultiMap.cs ├── PDBData.cs ├── ProfileDataSource.cs ├── ProfileView.xaml ├── ProfileView.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegexMan.cs ├── RegisterSet6510.cs ├── ScreenView.xaml ├── ScreenView.xaml.cs ├── ScriptPanel.xaml ├── ScriptPanel.xaml.cs ├── SpriteView.xaml ├── SpriteView.xaml.cs ├── TODO.txt ├── TweakPanel.xaml ├── TweakPanel.xaml.cs ├── VDCBitmap.xaml ├── VDCBitmap.xaml.cs ├── VICBitmap.xaml ├── VICBitmap.xaml.cs ├── VICECOMManager.cs ├── VICEPDBMonitor.csproj ├── VICEPDBMonitor.csproj.user ├── VICEPDBMonitor.sln ├── VICIIRenderer.cs ├── VICPallete.cs ├── bin │ └── Release │ │ ├── VICEPDBMonitor.exe │ │ └── VICEPDBMonitor.exe.config ├── charsets │ ├── CHARROM.chr │ ├── hexcharset1.prg │ ├── hexcharset2.prg │ └── hexcharset3.prg └── packages.config ├── docs ├── 65816.txt ├── AddrModes.txt ├── AllPOs.txt ├── COPYING ├── Changes.txt ├── Errors.txt ├── Example.txt ├── Help.txt ├── Illegals.txt ├── Lib.txt ├── QuickRef.txt ├── Source.txt └── Upgrade.txt ├── examples ├── ddrv.a ├── macedit.a └── me │ ├── const.a │ ├── core.a │ ├── cursor.a │ ├── file.a │ ├── macros.a │ ├── out.a │ └── vars.a ├── features ├── CheckForwardReference.feature ├── CheckLabelDefined.feature ├── CheckPython.feature ├── CheckTest.feature └── CheckTrigno.feature ├── inttypes.h ├── src ├── Makefile ├── Makefile.dos ├── Makefile.riscos ├── PDB.cpp ├── WrapPython.cpp ├── WrapPython.h ├── _amiga.h ├── _dos.c ├── _dos.h ├── _riscos.c ├── _riscos.h ├── _std.c ├── _std.h ├── _win32.h ├── acme.c ├── acme.h ├── alu.c ├── alu.h ├── basics.c ├── basics.h ├── cliargs.c ├── cliargs.h ├── config.h ├── cpu.c ├── cpu.h ├── dynabuf.c ├── dynabuf.h ├── encoding.c ├── encoding.h ├── flow.c ├── flow.h ├── global.c ├── global.h ├── input.c ├── input.h ├── label.c ├── label.h ├── macro.c ├── macro.h ├── mnemo.c ├── mnemo.h ├── output.c ├── output.h ├── platform.c ├── platform.h ├── section.c ├── section.h ├── tree.c └── tree.h └── trigono.a /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/.gitignore -------------------------------------------------------------------------------- /ACME.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME.sln -------------------------------------------------------------------------------- /ACME.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME.vcxproj -------------------------------------------------------------------------------- /ACME.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME.vcxproj.filters -------------------------------------------------------------------------------- /ACME.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME.vcxproj.user -------------------------------------------------------------------------------- /ACME_Lib/6502/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME_Lib/6502/Help.txt -------------------------------------------------------------------------------- /ACME_Lib/6502/std.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME_Lib/6502/std.a -------------------------------------------------------------------------------- /ACME_Lib/65816/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME_Lib/65816/Help.txt -------------------------------------------------------------------------------- /ACME_Lib/65816/std.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME_Lib/65816/std.a -------------------------------------------------------------------------------- /ACME_Lib/Own/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ACME_Lib/Own/Help.txt -------------------------------------------------------------------------------- /CleanProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/CleanProject.bat -------------------------------------------------------------------------------- /CleanProjectFully.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/CleanProjectFully.bat -------------------------------------------------------------------------------- /CleanProjectFullyWithAttrib.bat: -------------------------------------------------------------------------------- 1 | rem ** Built files here 2 | call CleanProjectFully.bat 3 | 4 | attrib -r *.* /s 5 | -------------------------------------------------------------------------------- /DoBackup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/DoBackup.bat -------------------------------------------------------------------------------- /Done.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Done.txt -------------------------------------------------------------------------------- /FeatureEditor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/FeatureEditor.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /Release/ACME.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Release/ACME.exe -------------------------------------------------------------------------------- /Release/python39.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Release/python39.dll -------------------------------------------------------------------------------- /Release/python39.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Release/python39.zip -------------------------------------------------------------------------------- /RunTests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/RunTests.bat -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TODO.txt -------------------------------------------------------------------------------- /Test.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Test.a -------------------------------------------------------------------------------- /Test.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/Test.prg -------------------------------------------------------------------------------- /TestACME.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestACME.a -------------------------------------------------------------------------------- /TestACME.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestACME.prg -------------------------------------------------------------------------------- /TestForForwardReference.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestForForwardReference.a -------------------------------------------------------------------------------- /TestForForwardReference.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestForForwardReference.prg -------------------------------------------------------------------------------- /TestLabelDefined.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestLabelDefined.a -------------------------------------------------------------------------------- /TestLabelRedefinition.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestLabelRedefinition.a -------------------------------------------------------------------------------- /TestPython.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPython.a -------------------------------------------------------------------------------- /TestPython.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPython.prg -------------------------------------------------------------------------------- /TestPython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPython.py -------------------------------------------------------------------------------- /TestPythonBin1.a: -------------------------------------------------------------------------------- 1 | *=0 2 | !for .i , 256 { 3 | !by .i-1 4 | } 5 | -------------------------------------------------------------------------------- /TestPythonBin2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPythonBin2.a -------------------------------------------------------------------------------- /TestPythonBin3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPythonBin3.a -------------------------------------------------------------------------------- /TestPythonBin4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/TestPythonBin4.a -------------------------------------------------------------------------------- /VICEPDBMonitor/AcmePDBRandD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/AcmePDBRandD.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/App.config -------------------------------------------------------------------------------- /VICEPDBMonitor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/App.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/App.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/AssertDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/AssertDataSource.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/BreakPointDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/BreakPointDataSource.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/BreakPointDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/BreakPointDispatcher.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/C128ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/C128ViewModel.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/C64MemDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/C64MemDump.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/C64RAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/C64RAM.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/CharView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/CharView.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/CharView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/CharView.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ChisViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ChisViewer.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/ChisViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ChisViewer.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ContextDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ContextDataSource.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/Done.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Done.txt -------------------------------------------------------------------------------- /VICEPDBMonitor/EnumMatchToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/EnumMatchToBooleanConverter.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/FunctionJSONRAndD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/FunctionJSONRAndD.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/IMemDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/IMemDump.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/IPDBReaderAndDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/IPDBReaderAndDisplay.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/IRegisterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/IRegisterSet.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/LiveWatch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/LiveWatch.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/LiveWatch.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/LiveWatch.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MainWindow.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/MemCalc.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MemCalc.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/MemCalc.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MemCalc.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/MemoryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MemoryView.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/MemoryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MemoryView.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/MultiMap.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/PDBData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/PDBData.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ProfileDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ProfileDataSource.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ProfileView.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/ProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ProfileView.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Properties/Resources.resx -------------------------------------------------------------------------------- /VICEPDBMonitor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/Properties/Settings.settings -------------------------------------------------------------------------------- /VICEPDBMonitor/RegexMan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/RegexMan.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/RegisterSet6510.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/RegisterSet6510.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ScreenView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ScreenView.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/ScreenView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ScreenView.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/ScriptPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ScriptPanel.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/ScriptPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/ScriptPanel.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/SpriteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/SpriteView.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/SpriteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/SpriteView.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/TODO.txt -------------------------------------------------------------------------------- /VICEPDBMonitor/TweakPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/TweakPanel.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/TweakPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/TweakPanel.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/VDCBitmap.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VDCBitmap.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/VDCBitmap.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VDCBitmap.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/VICBitmap.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICBitmap.xaml -------------------------------------------------------------------------------- /VICEPDBMonitor/VICBitmap.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICBitmap.xaml.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/VICECOMManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICECOMManager.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/VICEPDBMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICEPDBMonitor.csproj -------------------------------------------------------------------------------- /VICEPDBMonitor/VICEPDBMonitor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICEPDBMonitor.csproj.user -------------------------------------------------------------------------------- /VICEPDBMonitor/VICEPDBMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICEPDBMonitor.sln -------------------------------------------------------------------------------- /VICEPDBMonitor/VICIIRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICIIRenderer.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/VICPallete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/VICPallete.cs -------------------------------------------------------------------------------- /VICEPDBMonitor/bin/Release/VICEPDBMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/bin/Release/VICEPDBMonitor.exe -------------------------------------------------------------------------------- /VICEPDBMonitor/bin/Release/VICEPDBMonitor.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/bin/Release/VICEPDBMonitor.exe.config -------------------------------------------------------------------------------- /VICEPDBMonitor/charsets/CHARROM.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/charsets/CHARROM.chr -------------------------------------------------------------------------------- /VICEPDBMonitor/charsets/hexcharset1.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/charsets/hexcharset1.prg -------------------------------------------------------------------------------- /VICEPDBMonitor/charsets/hexcharset2.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/charsets/hexcharset2.prg -------------------------------------------------------------------------------- /VICEPDBMonitor/charsets/hexcharset3.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/charsets/hexcharset3.prg -------------------------------------------------------------------------------- /VICEPDBMonitor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/VICEPDBMonitor/packages.config -------------------------------------------------------------------------------- /docs/65816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/65816.txt -------------------------------------------------------------------------------- /docs/AddrModes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/AddrModes.txt -------------------------------------------------------------------------------- /docs/AllPOs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/AllPOs.txt -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Changes.txt -------------------------------------------------------------------------------- /docs/Errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Errors.txt -------------------------------------------------------------------------------- /docs/Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Example.txt -------------------------------------------------------------------------------- /docs/Help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Help.txt -------------------------------------------------------------------------------- /docs/Illegals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Illegals.txt -------------------------------------------------------------------------------- /docs/Lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Lib.txt -------------------------------------------------------------------------------- /docs/QuickRef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/QuickRef.txt -------------------------------------------------------------------------------- /docs/Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Source.txt -------------------------------------------------------------------------------- /docs/Upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/docs/Upgrade.txt -------------------------------------------------------------------------------- /examples/ddrv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/ddrv.a -------------------------------------------------------------------------------- /examples/macedit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/macedit.a -------------------------------------------------------------------------------- /examples/me/const.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/const.a -------------------------------------------------------------------------------- /examples/me/core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/core.a -------------------------------------------------------------------------------- /examples/me/cursor.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/cursor.a -------------------------------------------------------------------------------- /examples/me/file.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/file.a -------------------------------------------------------------------------------- /examples/me/macros.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/macros.a -------------------------------------------------------------------------------- /examples/me/out.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/out.a -------------------------------------------------------------------------------- /examples/me/vars.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/examples/me/vars.a -------------------------------------------------------------------------------- /features/CheckForwardReference.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/features/CheckForwardReference.feature -------------------------------------------------------------------------------- /features/CheckLabelDefined.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/features/CheckLabelDefined.feature -------------------------------------------------------------------------------- /features/CheckPython.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/features/CheckPython.feature -------------------------------------------------------------------------------- /features/CheckTest.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/features/CheckTest.feature -------------------------------------------------------------------------------- /features/CheckTrigno.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/features/CheckTrigno.feature -------------------------------------------------------------------------------- /inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/inttypes.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/Makefile.dos -------------------------------------------------------------------------------- /src/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/Makefile.riscos -------------------------------------------------------------------------------- /src/PDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/PDB.cpp -------------------------------------------------------------------------------- /src/WrapPython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/WrapPython.cpp -------------------------------------------------------------------------------- /src/WrapPython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/WrapPython.h -------------------------------------------------------------------------------- /src/_amiga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_amiga.h -------------------------------------------------------------------------------- /src/_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_dos.c -------------------------------------------------------------------------------- /src/_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_dos.h -------------------------------------------------------------------------------- /src/_riscos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_riscos.c -------------------------------------------------------------------------------- /src/_riscos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_riscos.h -------------------------------------------------------------------------------- /src/_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_std.c -------------------------------------------------------------------------------- /src/_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_std.h -------------------------------------------------------------------------------- /src/_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/_win32.h -------------------------------------------------------------------------------- /src/acme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/acme.c -------------------------------------------------------------------------------- /src/acme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/acme.h -------------------------------------------------------------------------------- /src/alu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/alu.c -------------------------------------------------------------------------------- /src/alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/alu.h -------------------------------------------------------------------------------- /src/basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/basics.c -------------------------------------------------------------------------------- /src/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/basics.h -------------------------------------------------------------------------------- /src/cliargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/cliargs.c -------------------------------------------------------------------------------- /src/cliargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/cliargs.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/config.h -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/dynabuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/dynabuf.c -------------------------------------------------------------------------------- /src/dynabuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/dynabuf.h -------------------------------------------------------------------------------- /src/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/encoding.c -------------------------------------------------------------------------------- /src/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/encoding.h -------------------------------------------------------------------------------- /src/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/flow.c -------------------------------------------------------------------------------- /src/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/flow.h -------------------------------------------------------------------------------- /src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/global.c -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/global.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/input.c -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/input.h -------------------------------------------------------------------------------- /src/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/label.c -------------------------------------------------------------------------------- /src/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/label.h -------------------------------------------------------------------------------- /src/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/macro.c -------------------------------------------------------------------------------- /src/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/macro.h -------------------------------------------------------------------------------- /src/mnemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/mnemo.c -------------------------------------------------------------------------------- /src/mnemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/mnemo.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/output.h -------------------------------------------------------------------------------- /src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/platform.c -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/section.c -------------------------------------------------------------------------------- /src/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/section.h -------------------------------------------------------------------------------- /src/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/tree.c -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/src/tree.h -------------------------------------------------------------------------------- /trigono.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinpiper/ACME/HEAD/trigono.a --------------------------------------------------------------------------------