22
33[ ![ Build Status] ( https://travis-ci.org/craigthomas/Chip8Java.svg?branch=master )] ( https://travis-ci.org/craigthomas/Chip8Java )
44[ ![ Coverage Status] ( https://codecov.io/gh/craigthomas/Chip8Java/branch/master/graph/badge.svg )] ( https://codecov.io/gh/craigthomas/Chip8Java )
5+ [ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/51b8560fe61441a3b05b83c1e7a5eee6 )] ( https://www.codacy.com/app/craig-thomas/Chip8Java?utm_source=github.com& ; utm_medium=referral& ; utm_content=craigthomas/Chip8Java& ; utm_campaign=Badge_Grade )
56[ ![ Dependency Status] ( https://www.versioneye.com/user/projects/55ef3f691e87ad001900006a/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/55ef3f691e87ad001900006a )
67
78## What is it?
@@ -55,7 +56,7 @@ The compiled Jar file will be placed in the `build/libs` directory.
5556The command-line interface currently requires a single argument, which
5657is the full path to a Chip 8 ROM:
5758
58- java -jar build/libs/emulator-1.0.jar /path/to/rom/filename
59+ java -jar build/libs/emulator-1.0-all .jar /path/to/rom/filename
5960
6061This will start the emulator with the specified ROM.
6162
@@ -64,7 +65,7 @@ This will start the emulator with the specified ROM.
6465The ` -s ` switch will scale the size of the window (the original size
6566at 1x scale is 64 x 32):
6667
67- java -jar build/libs/emulator-1.0.jar /path/to/rom/filename -s 10
68+ java -jar build/libs/emulator-1.0-all .jar /path/to/rom/filename -s 10
6869
6970The command above will scale the window so that it is 10 times the normal
7071size.
7475You may also wish to experiment with the ` -d ` switch, which instructs
7576the emulator to add a delay to every operation that is executed. For example,
7677
77- java -jar build/libs/emulator-1.0.jar /path/to/rom/filename -d 10
78+ java -jar build/libs/emulator-1.0-all .jar /path/to/rom/filename -d 10
7879
7980The command above will add a 10 ms delay to every opcode that is executed.
8081This is useful for very fast computers (note that it is difficult to find
@@ -88,7 +89,7 @@ You can also ask the emulator to start in debug mode, where each
8889instruction is disassembled and displayed in the bottom left hand corner
8990of the screen on a semi-transparent overlay. To do this:
9091
91- java -jar build/libs/emulator-1.0.jar /path/to/rom/filename -t
92+ java -jar build/libs/emulator-1.0-all .jar /path/to/rom/filename -t
9293
9394## Keys
9495
0 commit comments