Previous 199869 Revisions Next

r17412 Wednesday 22nd August, 2012 at 21:46:55 UTC by Angelo Salese
FastROM resets at boot, hook that up
[src/emu/cpu/g65816]g65816.c

trunk/src/emu/cpu/g65816/g65816.c
r17411r17412
555555   cpustate->cpu_type = CPU_TYPE_5A22;
556556}
557557
558static 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
558567CPU_SET_INFO( _5a22 )
559568{
560569   g65816i_cpu_struct *cpustate = (device != NULL && device->token() != NULL) ? get_safe_token(device) : NULL;
r17411r17412
576585      /* --- the following bits of info are returned as pointers to data or functions --- */
577586      case CPUINFO_FCT_SET_INFO:                  info->setinfo = CPU_SET_INFO_NAME(_5a22);      break;
578587      case CPUINFO_FCT_INIT:                     info->init = CPU_INIT_NAME(5a22);   break;
588      case CPUINFO_FCT_RESET:                     info->reset = CPU_RESET_NAME(5a22);            break;
579589
580590      /* --- the following bits of info are returned as NULL-terminated strings --- */
581591      case DEVINFO_STR_NAME:                     strcpy(info->s, "5A22");         break;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team