# New Ticket Created by  Simon Glover 
# Please include the string:  [netlabs #650]
# in the subject line of all future correspondence about this issue. 
# <URL: http://bugs6.perl.org/rt2/Ticket/Display.html?id=650 >



 A few small fixes to the assembler documentation. NB This patch assumes
 that my previous keyed ops renaming patch has been applied.

 Simon

--- assemble.pl.old     Sat Jun  1 17:34:38 2002
+++ assemble.pl Sat Jun  1 17:33:59 2002
@@ -51,22 +51,18 @@
 accept a simple array of instructions and generate bytecode directly from that.
 This should eliminate the intermediary .pasm file and speed things up.

-=head2 NEWS
+=head2 Keyed access

-Keyed access. We now support the following (tested) code:
+ We now support the following (tested) code:

-  new P0, 6 # Index of PerlHash. Clumsy, but necessary until the macro processor
-            # layer is added.
+  new P0, .PerlHash    # (See the discussion of macros above)
   set S0, "one"
-  set_keyed P0[S0],1
-  get_keyed I0,P0[S0]
+  set P0[S0],1
+  set I0,P0[S0]
   print I0
   print "\n"
   end

-Local labels. Not supported yet. The macro processor layer probably will do this
-for us, once it's added.
-
 =cut

 #


Reply via email to