realemu: implement conditional set instruction, add dummys
This commit is contained in:
parent
a96bc88d07
commit
ef2f5ba3db
3 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
|
|
0
usr/glenda/bin/386/.dummy
Normal file
0
usr/glenda/bin/386/.dummy
Normal file
0
usr/glenda/tmp/.dummy
Normal file
0
usr/glenda/tmp/.dummy
Normal file
Loading…
Reference in a new issue