-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchip8.1
38 lines (38 loc) · 1.02 KB
/
chip8.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.\" Automatically generated by Pandoc 3.1.12.3
.\"
.TH "Chip8 Emulator" "1" "April 3, 2024" "chip8 0.1.0" "User Manual"
.SH NAME
chip8 \- Chip8 Emulator that can emulate, disassemble and debug ROMs.
.SH SYNOPSIS
\f[B]chip8\f[R] [\f[I]OPTIONS\f[R]] [\f[I]ROM\f[R]]
.PP
\f[B]chip8\f[R] emu [\f[I]ROM\f[R]]
.PP
\f[B]chip8\f[R] dis [\f[I]ROM\f[R]]
.PP
\f[B]chip8\f[R] dbg [\f[I]ROM\f[R]]
.SH DESCRIPTION
This Chip8 Emulator can Emulate, Disassemble and Debug ROMs.
.SH OPTIONS
.TP
\f[B]emu\f[R]
emulates a give ROM
.TP
\f[B]dis\f[R]
disassembles a given ROM
.TP
\f[B]dbg\f[R]
starts the emulator in debugger mode for the given ROM
.SH EXAMPLES
\f[B]chip8 emu roms/test_opcode.ch8\f[R] Emulates roms/test_opcode.ch8.
.PP
\f[B]chip8 dis roms/test_opcode.ch8\f[R] Disassembles
roms/test_opcode.ch8 and prints the memory address, the opcode and
describes the behavior in words.
.PP
\f[B]chip8 dbg roms/test_opcode.ch8\f[R] Opens the emulator in debug
mode.
.SH AUTHORS
Written by Conrad H. Carl.
.SH SEE ALSO
Github\-Page: https://github.com/chc0815/chip8