Re: [PATCH] Changes to interpreter op table and simplified DO_OP

2001-09-19 Thread Simon Cozens
On Wed, Sep 19, 2001 at 06:23:41PM -0400, Gregor N. Purdy wrote: > -print INTERP "\tx[$opcodes{$name}{CODE}] = (void*)$name; \\\n"; > -} > -print INTERP "} while (0);\n"; > +printf INTERP "{ (void *)%-12s, %-14s, %d, { ", > + $name, "\"$name\"", $opcodes{$name}{ARGS}; This is so m

[PATCH] Changes to interpreter op table and simplified DO_OP

2001-09-19 Thread Gregor N. Purdy
All -- I wanted to have a unified op func, name, argc and argtype[] member in the interpreter struct, and that led me to make all the changes in this patch. I don't know if I've gone too far, but DO_OP is simpler now, and things still seem to run for me. Anyone else interested in trying this ou