Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlamott/chip8
Chip 8 Emulator in Java
https://github.com/dlamott/chip8
chip chip8 chip8-emulator emulator java
Last synced: 11 days ago
JSON representation
Chip 8 Emulator in Java
- Host: GitHub
- URL: https://github.com/dlamott/chip8
- Owner: DLaMott
- Created: 2021-01-12T20:02:28.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-19T23:09:44.000Z (almost 3 years ago)
- Last Synced: 2024-11-14T00:35:53.603Z (2 months ago)
- Topics: chip, chip8, chip8-emulator, emulator, java
- Language: Java
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chip8 Emulator in Java
Built using JavaFX### What is the Chip8?
>CHIP-8 is an interpreted programming language,
developed by Joseph Weisbecker.
It was initially used on the COSMAC VIP and Telmac
1800 8-bit microcomputers in the mid-1970s.
CHIP-8 programs are run on a CHIP-8 virtual machine.
It was made to allow video games to be more easily
programmed for these computers
The Chip8 emulator supports additional ROM files as the application
allows for a user menu prompt to load a rom. Upon load users will initially
be present with the classic game known as PONG. Have fun playing some
classic retro games!>How to run?
>>Ensure you have JavaFX library
>>>Clone the repo and run the main method.>To Do:
>>Migrate to Gradle### Helpful resources were:
1. http://devernay.free.fr/hacks/chip8/C8TECH10.HTM
2. https://docs.oracle.com/javase/8/javafx/api/toc.htm
3. http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/