]> gitweb.factorcode.org Git - factor.git/blob - extra/lunar-rescue/lunar-rescue-docs.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / lunar-rescue / lunar-rescue-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: lunar-rescue 
5
6 HELP: run-lunar 
7 { $description 
8 "Run the Lunar Rescue emulator in a new window." $nl
9 { $link rom-root } " must be set to the directory containing the "
10 "location of the Lunar Rescue ROM files. See " 
11 { $link { "lunar-rescue" "lunar-rescue" } } "  for details."
12 } ;
13
14 ARTICLE: { "lunar-rescue" "lunar-rescue" } "Lunar Rescue Emulator"
15 "Provides an emulation of the original 8080 Arcade Game 'Lunar Rescue'." $nl
16 "More information on the arcade game can be obtained from " { $url "http://www.mameworld.net/maws/romset/lrescue" } "." $nl
17 "To play the game you need the ROM files for the arcade game. They should "
18 "be placed in a directory called " { $snippet "lrescue" } " in the location specified by "
19 "the variable " { $link rom-root } ". The specific files needed are:"
20 { $list
21   "lrescue/lrescue.1"
22   "lrescue/lrescue.2"
23   "lrescue/lrescue.3"
24   "lrescue/lrescue.4"
25   "lrescue/lrescue.5"
26   "lrescue/lrescue.6"
27 }
28 "These are the same ROM files as used by MAME. To run the game use the " 
29 { $link run-lunar } " word." $nl
30 "Keys:" 
31 { $table
32   { "Backspace" "Insert Coin" }
33   { "1" "1 Player" }
34   { "2" "2 Player" }
35   { "Left" "Move Left" }
36   { "Right" "Move Right" }
37   { "Up" "Fire or apply thrusters" }
38 }
39 "If you save the Factor image while a game is running, when you restart "
40 "the image the game continues where it left off." ;