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

« back to all changes in this revision

Viewing changes to src/emu/cpu/cp1610/cp1610.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:
3455
3455
        case CPUINFO_INT_CONTEXT_SIZE:                                  info->i = sizeof(cp1610_state); break;
3456
3456
        case CPUINFO_INT_INPUT_LINES:                                           info->i = 2;                    break;
3457
3457
        case CPUINFO_INT_DEFAULT_IRQ_VECTOR:                    info->i = 0;                    break;
3458
 
        case CPUINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       break;
 
3458
        case DEVINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       break;
3459
3459
        case CPUINFO_INT_CLOCK_MULTIPLIER:                              info->i = 1;                    break;
3460
3460
        case CPUINFO_INT_CLOCK_DIVIDER:                                 info->i = 1;                    break;
3461
3461
        case CPUINFO_INT_MIN_INSTRUCTION_BYTES:                 info->i = 2;                    break;
3501
3501
        case CPUINFO_PTR_INSTRUCTION_COUNTER:                   info->icount = &cpustate->icount;                       break;
3502
3502
 
3503
3503
        /* --- the following bits of info are returned as NULL-terminated strings --- */
3504
 
        case CPUINFO_STR_NAME:                  strcpy(info->s, "CP1610");              break;
3505
 
        case CPUINFO_STR_CORE_FAMILY:   strcpy(info->s, "");                            break;
3506
 
        case CPUINFO_STR_CORE_VERSION:  strcpy(info->s, "1.0");                 break;
3507
 
        case CPUINFO_STR_CORE_FILE:             strcpy(info->s, __FILE__);              break;
3508
 
        case CPUINFO_STR_CORE_CREDITS:  strcpy(info->s,
 
3504
        case DEVINFO_STR_NAME:                  strcpy(info->s, "CP1610");              break;
 
3505
        case DEVINFO_STR_FAMILY:        strcpy(info->s, "");                            break;
 
3506
        case DEVINFO_STR_VERSION:       strcpy(info->s, "1.0");                 break;
 
3507
        case DEVINFO_STR_SOURCE_FILE:           strcpy(info->s, __FILE__);              break;
 
3508
        case DEVINFO_STR_CREDITS:       strcpy(info->s,
3509
3509
                                                                        "Copyright Frank Palazzolo, all rights reserved.");
3510
3510
                                                                        break;
3511
3511
    case CPUINFO_STR_FLAGS: