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

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

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