Annotation of gforth/arch/misc/README, revision 1.2

1.1       pazsan      1: This directory contains simulator, assembler and primitives for the
1.2     ! crook       2: MISC-chip.
        !             3: 
        !             4: Information about the MISC processor can be found at: www.mixed-mode.de
        !             5: 
        !             6: Create a gforth image for the misc simulator with:
1.1       pazsan      7: 
                      8: make kernl-misc.fi
                      9: 
1.2     ! crook      10: Load this image into the simulator and run the simulator with:
1.1       pazsan     11: 
                     12: gforth arch/misc/sim.fs -e "load kernl-misc.fi g"
                     13: 
1.2     ! crook      14: Additionally, there are two more complex examples (two terminal games,
        !            15: Sokoban and Tetris). To create the image, add:
1.1       pazsan     16: 
                     17: include arch/misc/sokoban.fs
                     18: include arch/misc/tt.fs
                     19: 
1.2     ! crook      20: in kernel/main.fs (they are commented out by default) then perform a make
        !            21: kernl-misc.fi as above. Move the result to games-misc.fi, and start
        !            22: the simulator:
1.1       pazsan     23: 
1.2     ! crook      24: mv kernl-misc.fi games-misc.fi
1.1       pazsan     25: gforth arch/misc/sim.fs -e "load games-misc.fi g"
                     26: 
                     27: Now type in "sokoban" <return> or "tt" <return> to play sokoban or
                     28: tetris (be aware: both are very slow!). To stop either game, type "q".

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>