예제 #1
0
파일: tst.c 프로젝트: lokedhs/ostis
static void tst(struct cpu *cpu, WORD op)
{
  ENTER;

  switch((op&0xc0)>>6) {
  case 0:
    tst_b(cpu, op);
    return;
  case 1:
    tst_w(cpu, op);
    return;
  case 2:
    tst_l(cpu, op);
    return;
  }
}
예제 #2
0
파일: tst.c 프로젝트: nocrew/ostis
static void tst(struct cpu *cpu, WORD op)
{
  ENTER;

  switch((op&0xc0)>>6) {
  case 0:
    tst_b(cpu, op);
    break;
  case 1:
    tst_w(cpu, op);
    break;
  case 2:
    tst_l(cpu, op);
    break;
  }
  cpu_prefetch();
}