├── .gitignore ├── MathParser.dll ├── z80assemble.suo ├── Z80IDE ├── Images │ ├── New.ico │ ├── Open.ico │ ├── Save.ico │ ├── sot_6_pin.ico │ ├── OutputWindow.ico │ ├── ToolboxWindow.ico │ └── SolutionExplorer.ico ├── syntax.xml ├── ToolWindow.cs ├── Program.cs ├── DummyOutputWindow.cs ├── HexView.cs ├── Properties │ ├── Settings.settings │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Settings.Designer.cs │ └── Resources.resx ├── app.config ├── NewSolution.cs ├── HexView.Designer.cs ├── BuildManager.cs ├── DummyOutputWindow.Designer.cs ├── MemoryByteProvider.cs ├── ToolWindow.Designer.cs ├── SolutionSettings.cs ├── EditorWindow.cs ├── DummySolutionExplorer.cs ├── NewSolution.resx ├── HexView.resx ├── SolutionSettings.resx ├── ToolWindow.resx ├── DummyOutputWindow.resx ├── NewSolution.Designer.cs ├── Solution.cs ├── EditorWindow.resx ├── Z80IDE.csproj ├── SolutionSettings.Designer.cs ├── EditorWindow.Designer.cs └── DummySolutionExplorer.resx ├── HexBoxWin7 └── bin │ ├── Ribbon.dll │ └── Be.Windows.Forms.HexBox.dll ├── WeifenLuo.WinFormsUI.Docking.dll ├── FastColoredTextBox-master └── Binary │ ├── TabStrip.dll │ ├── FastColoredTextBox.dll │ └── htmlDesc.xml ├── Tests ├── app.config ├── Properties │ └── AssemblyInfo.cs └── Tests.csproj ├── z80assemble ├── app.config ├── z80assembler.csproj.user ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Class1.cs ├── MemoryByteProvider.cs ├── z80assembler.csproj └── commands.txt ├── MathParser.dll.licence.txt ├── IntelHex ├── Properties │ └── AssemblyInfo.cs ├── IntelHex.csproj └── Class1.cs ├── z80assemble.sln └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | Release/ 3 | Debug/ 4 | -------------------------------------------------------------------------------- /MathParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/MathParser.dll -------------------------------------------------------------------------------- /z80assemble.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/z80assemble.suo -------------------------------------------------------------------------------- /Z80IDE/Images/New.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/New.ico -------------------------------------------------------------------------------- /Z80IDE/Images/Open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/Open.ico -------------------------------------------------------------------------------- /Z80IDE/Images/Save.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/Save.ico -------------------------------------------------------------------------------- /HexBoxWin7/bin/Ribbon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/HexBoxWin7/bin/Ribbon.dll -------------------------------------------------------------------------------- /Z80IDE/Images/sot_6_pin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/sot_6_pin.ico -------------------------------------------------------------------------------- /Z80IDE/Images/OutputWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/OutputWindow.ico -------------------------------------------------------------------------------- /WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /Z80IDE/Images/ToolboxWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/ToolboxWindow.ico -------------------------------------------------------------------------------- /Z80IDE/Images/SolutionExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/Z80IDE/Images/SolutionExplorer.ico -------------------------------------------------------------------------------- /HexBoxWin7/bin/Be.Windows.Forms.HexBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/HexBoxWin7/bin/Be.Windows.Forms.HexBox.dll -------------------------------------------------------------------------------- /FastColoredTextBox-master/Binary/TabStrip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/FastColoredTextBox-master/Binary/TabStrip.dll -------------------------------------------------------------------------------- /FastColoredTextBox-master/Binary/FastColoredTextBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/z80assembler/HEAD/FastColoredTextBox-master/Binary/FastColoredTextBox.dll -------------------------------------------------------------------------------- /Tests/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /z80assemble/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /z80assemble/z80assembler.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /z80assemble/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Z80IDE/syntax.xml: -------------------------------------------------------------------------------- 1 | 2 |