Example #1
0
void subb()
{
  sub8(rb);
}
Example #2
0
void suba()
{
  sub8(ra);
}
Example #3
0
Z80OPCODE opx_95(Z80 *cpu) { // sub xl
   sub8(cpu, cpu->xl);
}
Example #4
0
//#endif
//#ifndef Z80_COMMON
Z80OPCODE opx_96(Z80 *cpu) { // sub (ix+nn)
   signed char ofs = cpu->MemIf->rm(cpu->pc++);
   sub8(cpu, cpu->MemIf->rm(cpu->ix + ofs));
   cpu->t += 11;
}
Example #5
0
//#endif
//#ifdef Z80_COMMON
Z80OPCODE opx_94(Z80 *cpu) { // sub xh
   sub8(cpu, cpu->xh);
}