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

« back to all changes in this revision

Viewing changes to src/emu/cpu/f8/f8.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:
2014
2014
        case CPUINFO_INT_CONTEXT_SIZE:                                  info->i = sizeof(f8_Regs);      break;
2015
2015
        case CPUINFO_INT_INPUT_LINES:                                           info->i = 1;                    break;
2016
2016
        case CPUINFO_INT_DEFAULT_IRQ_VECTOR:                    info->i = 0;                    break;
2017
 
        case CPUINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       break;
 
2017
        case DEVINFO_INT_ENDIANNESS:                                    info->i = ENDIANNESS_BIG;       break;
2018
2018
        case CPUINFO_INT_CLOCK_MULTIPLIER:                              info->i = 1;                    break;
2019
2019
        case CPUINFO_INT_CLOCK_DIVIDER:                                 info->i = 1;                    break;
2020
2020
        case CPUINFO_INT_MIN_INSTRUCTION_BYTES:                 info->i = 1;                    break;
2126
2126
        case CPUINFO_PTR_INSTRUCTION_COUNTER:                   info->icount = &cpustate->icount;                               break;
2127
2127
 
2128
2128
        /* --- the following bits of info are returned as NULL-terminated strings --- */
2129
 
        case CPUINFO_STR_NAME:                  strcpy(info->s, "F8");                  break;
2130
 
        case CPUINFO_STR_CORE_FAMILY:   strcpy(info->s, "Fairchild F8");        break;
2131
 
        case CPUINFO_STR_CORE_VERSION:  strcpy(info->s, "1.0");                 break;
2132
 
        case CPUINFO_STR_CORE_FILE:             strcpy(info->s, __FILE__);              break;
2133
 
        case CPUINFO_STR_CORE_CREDITS:  strcpy(info->s,
 
2129
        case DEVINFO_STR_NAME:                  strcpy(info->s, "F8");                  break;
 
2130
        case DEVINFO_STR_FAMILY:        strcpy(info->s, "Fairchild F8");        break;
 
2131
        case DEVINFO_STR_VERSION:       strcpy(info->s, "1.0");                 break;
 
2132
        case DEVINFO_STR_SOURCE_FILE:           strcpy(info->s, __FILE__);              break;
 
2133
        case DEVINFO_STR_CREDITS:       strcpy(info->s,
2134
2134
                                                                        "Copyright Juergen Buchmueller, all rights reserved.");
2135
2135
                                                                        break;
2136
2136