realemu: implement conditional set instruction, add dummys

This commit is contained in:
cinap_lenrek 2011-04-25 13:15:37 +00:00
parent a96bc88d07
commit ef2f5ba3db
3 changed files with 7 additions and 0 deletions

View file

@ -813,6 +813,12 @@ opjump(Cpu *cpu, Inst *i)
jump(i->a1);
}
static void
opset(Cpu *cpu, Inst *i)
{
aw(i->a1, cctrue(cpu, i));
}
static void
oploop(Cpu *cpu, Inst *i)
{
@ -1155,6 +1161,7 @@ static void (*exctab[NUMOP])(Cpu *cpu, Inst*) = {
[OCALL] = opcall,
[OJUMP] = opjump,
[OSET] = opset,
[OLOOP] = oploop,
[OLOOPZ] = oploop,

View file

0
usr/glenda/tmp/.dummy Normal file
View file