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

« back to all changes in this revision

Viewing changes to src/emu/cpu/pdp1/tx0.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:
443
443
        case CPUINFO_INT_CONTEXT_SIZE:                                  info->i = sizeof(tx0_state);                                    break;
444
444
        case CPUINFO_INT_INPUT_LINES:                                   info->i = 0;                                                                    break;
445
445
        case CPUINFO_INT_DEFAULT_IRQ_VECTOR:                    info->i = 0;                                                                    break;
446
 
        case CPUINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       /*don't care*/          break;
 
446
        case DEVINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       /*don't care*/          break;
447
447
        case CPUINFO_INT_CLOCK_MULTIPLIER:                              info->i = 1;                                                                    break;
448
448
        case CPUINFO_INT_CLOCK_DIVIDER:                                 info->i = 1;                                                                    break;
449
449
        case CPUINFO_INT_MIN_INSTRUCTION_BYTES:                 info->i = 4;                                                                    break;
512
512
        case CPUINFO_PTR_INSTRUCTION_COUNTER:                   info->icount = &cpustate->icount;                                               break;
513
513
 
514
514
        /* --- the following bits of info are returned as NULL-terminated strings --- */
515
 
        case CPUINFO_STR_NAME:                                                  strcpy(info->s, "TX-0");                                                break;
516
 
        case CPUINFO_STR_CORE_FAMILY:                                   strcpy(info->s, "TX-0");                                                break;
517
 
        case CPUINFO_STR_CORE_VERSION:                                  strcpy(info->s, "1.0");                                                 break;
518
 
        case CPUINFO_STR_CORE_FILE:                                             strcpy(info->s, __FILE__);                                              break;
519
 
        case CPUINFO_STR_CORE_CREDITS:                                  strcpy(info->s, "Raphael Nabet");                               break;
 
515
        case DEVINFO_STR_NAME:                                                  strcpy(info->s, "TX-0");                                                break;
 
516
        case DEVINFO_STR_FAMILY:                                        strcpy(info->s, "TX-0");                                                break;
 
517
        case DEVINFO_STR_VERSION:                                       strcpy(info->s, "1.0");                                                 break;
 
518
        case DEVINFO_STR_SOURCE_FILE:                                           strcpy(info->s, __FILE__);                                              break;
 
519
        case DEVINFO_STR_CREDITS:                                       strcpy(info->s, "Raphael Nabet");                               break;
520
520
 
521
521
    case CPUINFO_STR_FLAGS:                                                     strcpy(info->s, "");                                                    break;
522
522
 
569
569
        case CPUINFO_INT_CONTEXT_SIZE:                                  info->i = sizeof(tx0_state);                                    break;
570
570
        case CPUINFO_INT_INPUT_LINES:                                   info->i = 0;                                                    break;
571
571
        case CPUINFO_INT_DEFAULT_IRQ_VECTOR:                    info->i = 0;                                                    break;
572
 
        case CPUINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       /*don't care*/  break;
 
572
        case DEVINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       /*don't care*/  break;
573
573
        case CPUINFO_INT_CLOCK_MULTIPLIER:                              info->i = 1;                                                    break;
574
574
        case CPUINFO_INT_CLOCK_DIVIDER:                                 info->i = 1;                                                    break;
575
575
        case CPUINFO_INT_MIN_INSTRUCTION_BYTES:                 info->i = 4;                                                    break;
638
638
        case CPUINFO_PTR_INSTRUCTION_COUNTER:                   info->icount = &cpustate->icount;                               break;
639
639
 
640
640
        /* --- the following bits of info are returned as NULL-terminated strings --- */
641
 
        case CPUINFO_STR_NAME:                                                  strcpy(info->s, "TX-0");        break;
642
 
        case CPUINFO_STR_CORE_FAMILY:                                   strcpy(info->s, "TX-0");        break;
643
 
        case CPUINFO_STR_CORE_VERSION:                                  strcpy(info->s, "1.0"); break;
644
 
        case CPUINFO_STR_CORE_FILE:                                             strcpy(info->s, __FILE__);      break;
645
 
        case CPUINFO_STR_CORE_CREDITS:                                  strcpy(info->s, "Raphael Nabet");       break;
 
641
        case DEVINFO_STR_NAME:                                                  strcpy(info->s, "TX-0");        break;
 
642
        case DEVINFO_STR_FAMILY:                                        strcpy(info->s, "TX-0");        break;
 
643
        case DEVINFO_STR_VERSION:                                       strcpy(info->s, "1.0"); break;
 
644
        case DEVINFO_STR_SOURCE_FILE:                                           strcpy(info->s, __FILE__);      break;
 
645
        case DEVINFO_STR_CREDITS:                                       strcpy(info->s, "Raphael Nabet");       break;
646
646
 
647
647
    case CPUINFO_STR_FLAGS:                                                     strcpy(info->s, "");    break;
648
648