~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/emu/cpu/m6502/m65ce02.c

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
                case CPUINFO_INT_CONTEXT_SIZE:                                  info->i = sizeof(m65ce02_Regs);                 break;
284
284
                case CPUINFO_INT_INPUT_LINES:                                   info->i = 2;                                                    break;
285
285
                case CPUINFO_INT_DEFAULT_IRQ_VECTOR:                    info->i = 0;                                                    break;
286
 
                case CPUINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_LITTLE;                                    break;
 
286
                case DEVINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_LITTLE;                                    break;
287
287
                case CPUINFO_INT_CLOCK_MULTIPLIER:                              info->i = 1;                                                    break;
288
288
                case CPUINFO_INT_CLOCK_DIVIDER:                                 info->i = 1;                                                    break;
289
289
                case CPUINFO_INT_MIN_INSTRUCTION_BYTES:                 info->i = 1;                                                    break;
332
332
                case CPUINFO_PTR_INSTRUCTION_COUNTER:                   info->icount = &cpustate->icount;                       break;
333
333
 
334
334
                /* --- the following bits of info are returned as NULL-terminated strings --- */
335
 
                case CPUINFO_STR_NAME: strcpy(info->s, "M65CE02");  break;
336
 
                case CPUINFO_STR_CORE_FAMILY: strcpy(info->s,"CBM Semiconductor Group CSG 65CE02");  break;
337
 
                case CPUINFO_STR_CORE_VERSION: strcpy(info->s,"1.0beta");  break;
338
 
                case CPUINFO_STR_CORE_FILE: strcpy(info->s,__FILE__);
339
 
                case CPUINFO_STR_CORE_CREDITS:
 
335
                case DEVINFO_STR_NAME: strcpy(info->s, "M65CE02");  break;
 
336
                case DEVINFO_STR_FAMILY: strcpy(info->s,"CBM Semiconductor Group CSG 65CE02");  break;
 
337
                case DEVINFO_STR_VERSION: strcpy(info->s,"1.0beta");  break;
 
338
                case DEVINFO_STR_SOURCE_FILE: strcpy(info->s,__FILE__);
 
339
                case DEVINFO_STR_CREDITS:
340
340
                        strcpy(info->s, "Copyright Juergen Buchmueller\n"
341
341
                                "Copyright Peter Trauner\n"
342
342
                                "all rights reserved.");  break;