Lines Matching +full:0 +full:x100
28 if (env->psw_pm == 0) { in rx_cpu_unpack_psw()
50 env->in_sleep = 0; in rx_cpu_do_interrupt()
53 env->usp = env->regs[0]; in rx_cpu_do_interrupt()
55 env->isp = env->regs[0]; in rx_cpu_do_interrupt()
58 env->psw_pm = env->psw_i = env->psw_u = 0; in rx_cpu_do_interrupt()
79 "interrupt 0x%02x raised\n", env->ack_irq); in rx_cpu_do_interrupt()
90 if (vec < 0x100) { in rx_cpu_do_interrupt()
91 env->pc = cpu_ldl_data(env, 0xffffff80 + vec * 4); in rx_cpu_do_interrupt()
93 env->pc = cpu_ldl_data(env, env->intb + (vec & 0xff) * 4); in rx_cpu_do_interrupt()
111 case 0x100 ... 0x1ff: in rx_cpu_do_interrupt()
114 qemu_log_mask(CPU_LOG_INT, "exception 0x%02x [%s] raised\n", in rx_cpu_do_interrupt()
115 (vec & 0xff), expname); in rx_cpu_do_interrupt()
117 env->regs[0] = env->isp; in rx_cpu_do_interrupt()
123 int accept = 0; in rx_cpu_exec_interrupt()