- scriptified a_spidermaster.cpp.

- fixed bad assert in XOR_RK instruction.
This commit is contained in:
Christoph Oelckers 2016-10-26 17:21:25 +02:00
parent c961e653a5
commit d32d52c0b9
6 changed files with 32 additions and 46 deletions

View file

@ -924,7 +924,7 @@ begin:
reg.d[a] = reg.d[B] ^ reg.d[C];
NEXTOP;
OP(XOR_RK):
ASSERTD(a); ASSERTD(B); ASSERTD(C);
ASSERTD(a); ASSERTD(B); ASSERTKD(C);
reg.d[a] = reg.d[B] ^ konstd[C];
NEXTOP;