]> gitweb.factorcode.org Git - factor.git/blob - extra/balloon-bomber/balloon-bomber-docs.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / balloon-bomber / balloon-bomber-docs.factor
1 ! Copyright (C) 2007 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.syntax help.markup cpu.8080.emulator ;
4 IN: balloon-bomber
5
6 HELP: run-balloon
7 { $description 
8 "Run the Balloon Bomber emulator in a new window." $nl
9 { $link rom-root } " must be set to the directory containing the "
10 "location of the Balloon Bomber ROM files. See " 
11 { $link { "balloon-bomber" "balloon-bomber" } } "  for details."
12 } ;
13
14 ARTICLE: { "balloon-bomber" "balloon-bomber" } "Balloon Bomber Emulator"
15 "Provides an emulation of the original 8080 Arcade Game 'Balloon Bomber'." $nl
16 "More information on the arcade game can be obtained from " { $url "http://www.mameworld.net/maws/romset/ballbomb" } "." $nl
17 "To play the game you need the ROM files for the arcade game. They should "
18 "be placed in a directory called 'ballbomb' in the location specified by "
19 "the variable " { $link rom-root } ". The specific files needed are:"
20 { $list
21   "ballbomb/tn01"
22   "ballbomb/tn02"
23   "ballbomb/tn03"
24   "ballbomb/tn04"
25   "ballbomb/tn05-1"
26 }
27 "These are the same ROM files as used by MAME. To run the game use the " 
28 { $link run-balloon } " word." $nl
29 "Keys:" 
30 { $table
31   { "Backspace" "Insert Coin" }
32   { "1" "1 Player" }
33   { "2" "2 Player" }
34   { "Left" "Move Left" }
35   { "Right" "Move Right" }
36   { "Up" "Fire" }
37 }
38 "If you save the Factor image while a game is running, when you restart "
39 "the image the game continues where it left off." ;