On Nov 29, 2005, at 8:38 AM, Leopold Toetsch wrote:
Chip Salzenberg wrote:
On Fri, Nov 25, 2005 at 11:45:40PM +0100, Leopold Toetsch wrote:
catch_label:
get_results "(...)", Pexcept, Smessage, ... # whatever
This part is now implemented (r10241). (Funnily it did work
immediately :)
Currently exactly these 2 arguments (exception, message) are passed
handler:
get_results "(0,0)", P0, S0
Currently, partcl stores extra information in P5[9] - Would it be
available as P0[9] in your example? (If so, is the message still
available as P0[0] ? If so, why do we specify S0 here?)
The get_results opcode has to be immediately after the exception
handler label.
For a certain transition phase P5 is still containing the exception
PMC.
Syntactic sugar, a la ...
# (b)
catch_label:
.get_results ($P0)
... will follow soon.
leo