https://github.com/outadoc/kemu-chip8
Kotlin multiplatform interpreter for CHIP-8
https://github.com/outadoc/kemu-chip8
Last synced: about 1 year ago
JSON representation
Kotlin multiplatform interpreter for CHIP-8
- Host: GitHub
- URL: https://github.com/outadoc/kemu-chip8
- Owner: outadoc
- Created: 2020-11-19T18:44:03.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2020-12-03T19:13:22.000Z (over 5 years ago)
- Last Synced: 2025-04-25T14:16:02.354Z (about 1 year ago)
- Language: Kotlin
- Size: 527 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kemu-chip8
==========
This repo holds a quick and dirty emulator project. It targets the CHIP-8 instruction set, and is
written in Kotlin.
The goal is to write as much common Kotlin code as possible (not relying on a specific platform),
and provide at least two platform implementations.
Why?
----
Why not?
Platforms
---------
### JVM
This is a desktop, cross-platform, Swing-based CHIP-8 emulator.

```shell
./gradlew app-chip8-desktop:run
```
### JavaScript
This is a web-based version of the CHIP-8 emulator.

```shell
./gradlew app-chip8-browser:browserProductionRun
```