Author: bernhard
Date: Sun Jan 11 06:34:19 2009
New Revision: 35415
Modified:
trunk/languages/befunge/README
Log:
[befunge] Update the README
Modified: trunk/languages/befunge/README
==============================================================================
--- trunk/languages/befunge/README (original)
+++ trunk/languages/befunge/README Sun Jan 11 06:34:19 2009
@@ -2,7 +2,7 @@
DESCRIPTION
-----------
-This is a Befunge interpreter written in Parrot assembler, version 0.2.0
+This is a Befunge interpreter written in PIR.
This interpreter should be Befunge-93 compliant. This means the
playfield is limited to 80x25. This should also mean that the torus
@@ -14,7 +14,7 @@
$ make test
-Then you can run your Befunge program with:
+Then you can run your Befunge program with:
$ ../../parrot befunge.pbc [-d] foo.bef
@@ -26,19 +26,20 @@
FILES
-----
The files are the following:
- befunge.pasm the main loop
- debug.pasm routines for the debugger
- flow.pasm handles the flow-control instructions
- io.pasm handles the i/o related instructions
- load.pasm function to load the code from source file
- maths.pasm handles all the maths instructions
- stack.pasm handles the stack instructions
- Makefile a tiny, little Makefile to help (me) during
- developement
- test.bef a befunge script that test almost all the
- instructions (and is even self-modifying!)
- pascserp.bef a befunge script generating variant of Sierpinsky
- triangle (by Chris Pressey)
+ befunge.pir the main loop
+ debug.pir routines for the debugger
+ flow.pir handles the flow-control instructions
+ io.pir handles the i/o related instructions
+ load.pir function to load the code from source file
+ maths.pir handles all the maths instructions
+ stack.pir handles the stack instructions
+ Makefile a little Makefile generated by config/makefiles/root.in
+ test.bef a befunge script that test almost all the
+ instructions (and is even self-modifying!)
+ pascserp.bef a befunge script generating variant of Sierpinsky
+ triangle (by Chris Pressey)
+ t/harness the test harness script
+ t/basic.t test test.bef
BUGS