-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# chip-8-emu-rs | ||
``` | ||
chip-8-emu 0.1.0 | ||
Amy Y | ||
Interpretting Emulator for Chip-8 | ||
USAGE: | ||
chip-8-emu.exe [OPTIONS] <rom_path> | ||
ARGS: | ||
<rom_path> The path of the ROM that is to be loaded into the emulator. If a '.state' file | ||
is loaded, the emulator will resume from that save state. | ||
OPTIONS: | ||
-b, --bg <background_color> The color in Hex that will be the background color. [default: | ||
000000] | ||
-f, --fg <foreground_color> The color in Hex that will be the foreground color. [default: | ||
FFFFFF] | ||
-h, --hz <hz> The amount of loops that the emulator runs in one second. | ||
[default: 500] | ||
--help Print help information | ||
-i, --invert-colors Invert colors of the screen of the emulator. | ||
-v, --volume <volume> Volume of the beep as a float. [default: 0.2] | ||
-V, --version Print version information | ||
``` |