]> gitweb.factorcode.org Git - factor.git/blob - extra/cpu/8080/8080-docs.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / cpu / 8080 / 8080-docs.factor
1 ! Copyright (C) 2007 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax sequences strings cpu.8080.emulator ;
4 IN: cpu.8080
5
6
7 ARTICLE: { "cpu-8080" "cpu-8080" } "Intel 8080 CPU Emulator"
8 "The cpu-8080 library provides an emulator for the Intel 8080 CPU"
9 " instruction set. It is complete enough to emulate some 8080"
10 " based arcade games." $nl 
11 "The emulated CPU can load 'ROM' files from disk using the "
12 { $link load-rom } " and " { $link load-rom* } " words. These expect "
13 "the " { $link rom-root } " variable to be set to the path "
14 "containing the ROM file's." ;
15
16 ABOUT: { "cpu-8080" "cpu-8080" }