├── .gitignore ├── LICENSE ├── README.md ├── Src ├── BreakpointList.cpp ├── BreakpointList.h ├── ChildView.cpp ├── ChildView.h ├── CodeView.cpp ├── CodeView.h ├── Expressions.cpp ├── Expressions.h ├── GraphicView.cpp ├── GraphicView.h ├── LoadAddress.cpp ├── LoadAddress.h ├── MainFrm.cpp ├── MainFrm.h ├── Memory.cpp ├── Memory.h ├── RegisterPane.cpp ├── RegisterPane.h ├── Resource.h ├── Step6502.cpp ├── Step6502.h ├── Step6502.rc ├── Step6502.sln ├── Step6502.vcxproj ├── Step6502.vcxproj.filters ├── UserImages.bmp ├── ViceConnect.cpp ├── ViceMon.cpp ├── ViceMon.h ├── WatchView.cpp ├── WatchView.h ├── boot_ram.cpp ├── boot_ram.h ├── cpu.cpp ├── cpu.h ├── machine.cpp ├── machine.h ├── res │ ├── Step6502.ico │ ├── Step6502.rc2 │ ├── Toolbar.bmp │ ├── Toolbar256.bmp │ ├── breakpoint.bmp │ ├── icon1.ico │ └── pc_arrow.bmp ├── stdafx.cpp ├── stdafx.h ├── sym.cpp ├── sym.h └── targetver.h ├── bin ├── Step6502-x64.zip └── Step6502-x86.zip └── media ├── AppleII_Hires.png ├── AppleII_Hires_Color.png ├── loadoptions.png ├── screen.png └── toolbar.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/README.md -------------------------------------------------------------------------------- /Src/BreakpointList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/BreakpointList.cpp -------------------------------------------------------------------------------- /Src/BreakpointList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/BreakpointList.h -------------------------------------------------------------------------------- /Src/ChildView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/ChildView.cpp -------------------------------------------------------------------------------- /Src/ChildView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/ChildView.h -------------------------------------------------------------------------------- /Src/CodeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/CodeView.cpp -------------------------------------------------------------------------------- /Src/CodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/CodeView.h -------------------------------------------------------------------------------- /Src/Expressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Expressions.cpp -------------------------------------------------------------------------------- /Src/Expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Expressions.h -------------------------------------------------------------------------------- /Src/GraphicView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/GraphicView.cpp -------------------------------------------------------------------------------- /Src/GraphicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/GraphicView.h -------------------------------------------------------------------------------- /Src/LoadAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/LoadAddress.cpp -------------------------------------------------------------------------------- /Src/LoadAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/LoadAddress.h -------------------------------------------------------------------------------- /Src/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/MainFrm.cpp -------------------------------------------------------------------------------- /Src/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/MainFrm.h -------------------------------------------------------------------------------- /Src/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Memory.cpp -------------------------------------------------------------------------------- /Src/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Memory.h -------------------------------------------------------------------------------- /Src/RegisterPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/RegisterPane.cpp -------------------------------------------------------------------------------- /Src/RegisterPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/RegisterPane.h -------------------------------------------------------------------------------- /Src/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Resource.h -------------------------------------------------------------------------------- /Src/Step6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.cpp -------------------------------------------------------------------------------- /Src/Step6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.h -------------------------------------------------------------------------------- /Src/Step6502.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.rc -------------------------------------------------------------------------------- /Src/Step6502.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.sln -------------------------------------------------------------------------------- /Src/Step6502.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.vcxproj -------------------------------------------------------------------------------- /Src/Step6502.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/Step6502.vcxproj.filters -------------------------------------------------------------------------------- /Src/UserImages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/UserImages.bmp -------------------------------------------------------------------------------- /Src/ViceConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/ViceConnect.cpp -------------------------------------------------------------------------------- /Src/ViceMon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/ViceMon.cpp -------------------------------------------------------------------------------- /Src/ViceMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/ViceMon.h -------------------------------------------------------------------------------- /Src/WatchView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/WatchView.cpp -------------------------------------------------------------------------------- /Src/WatchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/WatchView.h -------------------------------------------------------------------------------- /Src/boot_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/boot_ram.cpp -------------------------------------------------------------------------------- /Src/boot_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/boot_ram.h -------------------------------------------------------------------------------- /Src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/cpu.cpp -------------------------------------------------------------------------------- /Src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/cpu.h -------------------------------------------------------------------------------- /Src/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/machine.cpp -------------------------------------------------------------------------------- /Src/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/machine.h -------------------------------------------------------------------------------- /Src/res/Step6502.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/Step6502.ico -------------------------------------------------------------------------------- /Src/res/Step6502.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/Step6502.rc2 -------------------------------------------------------------------------------- /Src/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/Toolbar.bmp -------------------------------------------------------------------------------- /Src/res/Toolbar256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/Toolbar256.bmp -------------------------------------------------------------------------------- /Src/res/breakpoint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/breakpoint.bmp -------------------------------------------------------------------------------- /Src/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/icon1.ico -------------------------------------------------------------------------------- /Src/res/pc_arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/res/pc_arrow.bmp -------------------------------------------------------------------------------- /Src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/stdafx.cpp -------------------------------------------------------------------------------- /Src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/stdafx.h -------------------------------------------------------------------------------- /Src/sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/sym.cpp -------------------------------------------------------------------------------- /Src/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/sym.h -------------------------------------------------------------------------------- /Src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/Src/targetver.h -------------------------------------------------------------------------------- /bin/Step6502-x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/bin/Step6502-x64.zip -------------------------------------------------------------------------------- /bin/Step6502-x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/bin/Step6502-x86.zip -------------------------------------------------------------------------------- /media/AppleII_Hires.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/media/AppleII_Hires.png -------------------------------------------------------------------------------- /media/AppleII_Hires_Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/media/AppleII_Hires_Color.png -------------------------------------------------------------------------------- /media/loadoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/media/loadoptions.png -------------------------------------------------------------------------------- /media/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/media/screen.png -------------------------------------------------------------------------------- /media/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakrac/Step6502/HEAD/media/toolbar.png --------------------------------------------------------------------------------