Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipecsl/ktnes
A multiplatform NES emulator written in Kotlin
https://github.com/felipecsl/ktnes
android emulator kotlin kotlin-multiplatform nes
Last synced: 7 days ago
JSON representation
A multiplatform NES emulator written in Kotlin
- Host: GitHub
- URL: https://github.com/felipecsl/ktnes
- Owner: felipecsl
- Created: 2018-08-31T18:57:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T17:22:29.000Z (almost 5 years ago)
- Last Synced: 2025-01-09T03:34:05.998Z (14 days ago)
- Topics: android, emulator, kotlin, kotlin-multiplatform, nes
- Language: Kotlin
- Homepage: https://ktnes.com
- Size: 122 MB
- Stars: 304
- Watchers: 11
- Forks: 33
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ktnes
A NES emulator implemented in Kotlin using multiplatform support and Kotlin/Native.
Inspired on the following prior work:
* Go emulator [nes by @fogleman](https://github.com/fogleman/nes)
* JS emulator [jsnes by @bfirsh](https://github.com/bfirsh/jsnes)## Demo
![super mario bros 3](https://raw.githubusercontent.com/felipecsl/ktnes/master/smb3.gif)
![the legend of zelda](https://raw.githubusercontent.com/felipecsl/ktnes/master/zelda.gif)## Android implementation
You should be able to build and run directly from Android Studio.
If you'd rather use Gradle, run:
```
./gradlew android:installDebug
```## Javascript implementation
To build/run the Javascript version of the emulator, run:
```
./gradlew web:run
```Then, open `http://localhost:8080` on your browser.
## Status
Still under active development.
Sound works but is still a bit garbled/distorted.
### Implemented mappers:
* Mapper 0
* Mapper 1
* Mapper 4 (MMC3)## License
```
Copyright 2020 Felipe LimaLicensed 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 athttp://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.
```