6502SimDesktop/README.md

58 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2017-03-10 21:07:49 +00:00
# 6502 Simulator Desktop Edition
One of the best systems to start learning Assembly is with the old but amazing 8-bit Commodore 64.
2017-03-12 05:49:21 +00:00
Thanks to [Nick Morgan](https://twitter.com/skilldrick), creator of the [Easy 6502 and Easy 6502 tutorial with simulator](http://skilldrick.github.io/easy6502/), you can learn assembly very easily!
2017-03-10 21:07:49 +00:00
What would make it even easier is having your own Desktop 6502 Simulator to use. So to help make that happen
I went ahead and did exactly that. While I am not finished it is usable, and I plan to do whatever I can to
make it a great desktop app in the near future.
2017-03-30 05:18:39 +00:00
![6502 Desktop Simulator](/assets/6502Desktop_SS.png "6502Desktop on OSX")
2017-03-10 21:07:49 +00:00
2017-03-30 05:05:59 +00:00
# Getting Started
2017-03-10 21:07:49 +00:00
2017-03-30 05:05:59 +00:00
## Binary Downloads
2017-03-30 05:18:39 +00:00
[OSX Build 0.3.7](https://github.com/3DEsprit/6502SimDesktop/releases/download/0.3.7/6502Desktop-OSX_0.3.7.zip)
2017-05-08 03:39:24 +00:00
[Windows Build 0.3.7](https://github.com/3DEsprit/6502SimDesktop/releases/download/0.3.7/6502Desktop-Win_0.3.7.zip)
[Linux Build 0.3.7](https://github.com/3DEsprit/6502SimDesktop/releases/download/0.3.7/6502Desktop-Linux_0.3.7.zip)
2017-03-30 05:05:59 +00:00
## Install Manually
_If there is not a build for your OS or if you would like to compile from source, you can install manually:_
First things first, clone the repository by downloading with the Green Download button above, or cloning on your system.
2017-03-30 05:18:39 +00:00
`git clone https://github.com/3DEsprit/6502SimDesktop.git`
2017-03-30 05:05:59 +00:00
2017-03-30 05:18:39 +00:00
`yarn install` (or `npm install` without [Yarn](https://github.com/yarnpkg/yarn))
`npm start`
2017-03-10 21:07:49 +00:00
2017-03-30 05:05:59 +00:00
Have fun!
2017-03-10 21:07:49 +00:00
## ToDo List
2017-03-30 05:05:59 +00:00
* Finish Memory Monitor *In Progress*
* Add Menu/Hotkey Support for functions
* Update Register/Flag Viewing
* Addition of UI Animations
2017-03-12 05:49:21 +00:00
* Create Snazzy Icon (In process)
2017-05-08 03:39:24 +00:00
* Test on Linux
2017-03-30 05:05:59 +00:00
* Build Packages for Win/Linux Platforms
2017-03-30 05:18:39 +00:00
* ~~Reactive CSS with the window size~~
2017-03-30 05:05:59 +00:00
* Make the the sim integration more desktop-ish *In Progress*.
2017-03-12 05:49:21 +00:00
* Various Colored Themes
* Look at options to offer on Mac App Store, and Windows App Store
2017-05-08 03:39:24 +00:00
* Switch to Electron-Builder for Builds
* Change Linux Builds to AppImage
2017-03-10 21:07:49 +00:00
2017-03-12 05:49:21 +00:00
## License
2017-03-30 05:05:59 +00:00
The base simulator used in this app was created by [Nick Morgon](https://twitter.com/skilldrick), and you can find the original code in the [6502js Repo](https://github.com/skilldrick/6502js).
2017-03-10 21:07:49 +00:00