On Fri, 15 Mar 2002, Simon Glover wrote:
>
> stack.pasm: it can't handle the expanded opcode names like set_i_ic
>
This actually seems to be quite easy to fix - we just return early from
expand_op is the opcode is already in expanded form. Patch again newasm
attached.
Simon
--- newasm.old Fri Mar 15 17:20:30 2002
+++ newasm Fri Mar 15 19:15:05 2002
@@ -130,6 +130,7 @@
return unless $_;
s/(\w+)\s*//;
+ return $1." ".join ",",@args if $fullops{$1};
die "Don't know op $1" unless $ops{$1};
my $op = $1;