summaryrefslogtreecommitdiff
path: root/emu/options.ggo.in
diff options
context:
space:
mode:
Diffstat (limited to 'emu/options.ggo.in')
-rw-r--r--emu/options.ggo.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/emu/options.ggo.in b/emu/options.ggo.in
index 61fb1d4..9cfbff9 100644
--- a/emu/options.ggo.in
+++ b/emu/options.ggo.in
@@ -16,3 +16,48 @@ section "Main Options"
"Enable debugging output"
optional
+section "Run Options"
+
+ option "rom" r
+ "The code to load into ROM"
+ string typestr="filename"
+ default="rom.bin"
+ optional
+
+ option "steps" s
+ "Run at most 'steps' number of instructions (-1 means 'run forever')"
+ int typestr="steps"
+ default="-1"
+ optional
+
+section "Debug Options"
+
+ option "print-cpu" -
+ "Print status of CPU (registers, status register)"
+ optional
+
+ option "print-zero-page" -
+ "Print zero page of memory"
+ optional
+
+ option "print-stack" -
+ "Print stack area of memory"
+ optional
+
+ option "print-7seg" -
+ "Print what the 7-segment display on the VIA is doing"
+ optional
+
+section "GUI Options"
+
+ option "width" -
+ "Manually set width of the gui to x"
+ int typestr="pixel"
+ default="600"
+ optional
+
+ option "height" -
+ "Manually set height of the gui to y"
+ int typestr="pixel"
+ default="250"
+ optional