6502Android/README.md

36 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2015-06-09 17:24:13 +00:00
# 6502 Android
2015-06-30 07:11:07 +00:00
Ported from the awesome Javascript implementation [Easy 6502 by Nick Morgan](http://skilldrick.github.io/easy6502/).
This project is my first stab at learning Kotlin and doing Emulator programmimg. This emulator was
based on the project mentioned above but not ported verbatim. A Kotlin and Android optimized
solution was implemented. As of now, it is able to assemble and run simple programs, including
the [snake6502](https://gist.github.com/wkjagt/9043907) implementation by Willem van der Jagt, which
was also used in the Easy 6502 "ebook".
2017-03-08 05:51:40 +00:00
## Demo
2015-06-30 07:11:07 +00:00
2017-03-08 05:49:40 +00:00
![](https://raw.githubusercontent.com/felipecsl/6502Android/master/demo.gif)
2015-06-30 07:11:07 +00:00
## Status
There are still some instructions not implemented yet. I will update the CPU class soon with the
implementation for the remaining ones
## License
```
Copyright 2015 Felipe Lima
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```