From: Anthony J B. <net...@nc...> - 2008-01-12 07:03:50
|
On Fri, 11 Jan 2008, Stephen Williams wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > There are a handful of instructions in the vvp opcodes set that > are really pressed for operands. They are reduced to using implicit > index variables to carry operands that really can generally be > immediate. It's been a while since I've read that vvp opcodes doc, however note the following cut and paste typos in opcodes.txt: | * %xor <dst>, <src>, <wid> | | This does a bitwise exclusive or (^) of the <src> and <dst> vector, | and leaves the result in the <dst> vector. xor is this: | | 0 xnor 0 --> 0 | 0 xnor 1 --> 1 | 1 xnor 0 --> 1 | 1 xnor 1 --> 0 | otherwise x -Tony |