trunk/src/emu/cpu/g65816/g65816.c
r17411 | r17412 | |
555 | 555 | cpustate->cpu_type = CPU_TYPE_5A22; |
556 | 556 | } |
557 | 557 | |
| 558 | static CPU_RESET( 5a22 ) |
| 559 | { |
| 560 | g65816i_cpu_struct *cpustate = get_safe_token(device); |
| 561 | |
| 562 | CPU_RESET_CALL(g65816); |
| 563 | |
| 564 | cpustate->fastROM = 0; |
| 565 | } |
| 566 | |
558 | 567 | CPU_SET_INFO( _5a22 ) |
559 | 568 | { |
560 | 569 | g65816i_cpu_struct *cpustate = (device != NULL && device->token() != NULL) ? get_safe_token(device) : NULL; |
r17411 | r17412 | |
576 | 585 | /* --- the following bits of info are returned as pointers to data or functions --- */ |
577 | 586 | case CPUINFO_FCT_SET_INFO: info->setinfo = CPU_SET_INFO_NAME(_5a22); break; |
578 | 587 | case CPUINFO_FCT_INIT: info->init = CPU_INIT_NAME(5a22); break; |
| 588 | case CPUINFO_FCT_RESET: info->reset = CPU_RESET_NAME(5a22); break; |
579 | 589 | |
580 | 590 | /* --- the following bits of info are returned as NULL-terminated strings --- */ |
581 | 591 | case DEVINFO_STR_NAME: strcpy(info->s, "5A22"); break; |