[svn:parrot] r41569 - trunk/docs

dukeleto at svn.parrot.org dukeleto at svn.parrot.org
Wed Sep 30 03:03:32 UTC 2009


Author: dukeleto
Date: Wed Sep 30 03:03:28 2009
New Revision: 41569
URL: https://trac.parrot.org/parrot/changeset/41569

Log:
[TT #592][docs] Add docs about assigning to registers in docs/debugger.pod

Modified:
   trunk/docs/debugger.pod

Modified: trunk/docs/debugger.pod
==============================================================================
--- trunk/docs/debugger.pod	Wed Sep 30 02:14:30 2009	(r41568)
+++ trunk/docs/debugger.pod	Wed Sep 30 03:03:28 2009	(r41569)
@@ -76,6 +76,20 @@
 
 =over 4
 
+=item assign
+
+Assign to a Parrot register. For example:
+
+    (pdb)    a I0 42
+
+        I0 = 42
+
+    (pdb)    a N1 3.14
+
+        N1 = 3.14
+
+The first command sets I0 to 42 and the second sets N1 to 3.14.
+
 =item disassemble
 
 Disassemble a loaded bytecode file. This will turn a file loaded with C<load>


More information about the parrot-commits mailing list