[svn:languages] r85 - bf/trunk

fperrad at svn.parrot.org fperrad at svn.parrot.org
Sun Nov 22 11:37:50 UTC 2009


Author: fperrad
Date: Sun Nov 22 11:37:48 2009
New Revision: 85
URL: https://trac.parrot.org/languages/changeset/85

Log:
[bf] fix syntax

Modified:
   bf/trunk/bfc.pir
   bf/trunk/bfco.pir

Modified: bf/trunk/bfc.pir
==============================================================================
--- bf/trunk/bfc.pir	Wed Oct 21 17:11:59 2009	(r84)
+++ bf/trunk/bfc.pir	Sun Nov 22 11:37:48 2009	(r85)
@@ -49,12 +49,12 @@
   # Initialise
   code =      "set I0, 0          # pc\n"
   # concat code, "trace 1\n"
-  concat code,  "new P0, .ResizableIntegerArray # memory\n"
+  concat code,  "new P0, 'ResizableIntegerArray' # memory\n"
   # this array doesn't support negative indices properly
   # start with some offset
   concat code,  "set I1, 256          # pointer\n"
   concat code,  "getstdout P30\n"
-  concat code,  "pop S0, P30\n        # unbuffer\n"
+  concat code,  "#pop S0, P30\n        # unbuffer\n"
   concat code,  "getstdin P30\n"
 
   pc    = 0    # pc

Modified: bf/trunk/bfco.pir
==============================================================================
--- bf/trunk/bfco.pir	Wed Oct 21 17:11:59 2009	(r84)
+++ bf/trunk/bfco.pir	Sun Nov 22 11:37:48 2009	(r85)
@@ -67,7 +67,7 @@
   # this array doesn't support negative indices properly
   # start with some offset
   concat code,  "getstdout P30\n"
-  concat code,  "pop S0, P30\n        # unbuffer\n"
+  concat code,  "#pop S0, P30\n        # unbuffer\n"
   concat code,  "getstdin P30\n"
 
   pc    = 0    # pc


More information about the parrot-commits mailing list