~ubuntu-branches/ubuntu/precise/mame/precise-proposed

« back to all changes in this revision

Viewing changes to src/emu/cpu/m68000/m68000.h

  • Committer: Package Import Robot
  • Author(s): Cesare Falco
  • Date: 2011-11-30 18:50:10 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111130185010-02hcxybht1mn082w
Tags: 0.144-0ubuntu1
* New upstream release (LP: #913550)
* mame.install:
  - Added artwork/ images to be used with -effect switch
  - Be more selective with hash/ contents
* contrib/mame.ini: added /usr/share/games/mame/artwork/ to artpath

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#define M68K_IRQ_6    6
17
17
#define M68K_IRQ_7    7
18
18
 
 
19
// special input lines
 
20
#define M68K_LINE_BUSERROR 16
 
21
 
19
22
/* CPU types for use in m68k_set_cpu_type() */
20
23
enum
21
24
{
30
33
        M68K_CPU_TYPE_68EC040,
31
34
        M68K_CPU_TYPE_68LC040,
32
35
        M68K_CPU_TYPE_68040,
33
 
        M68K_CPU_TYPE_SCC68070
 
36
        M68K_CPU_TYPE_SCC68070,
 
37
        M68K_CPU_TYPE_68340,
 
38
    M68K_CPU_TYPE_COLDFIRE
34
39
};
35
40
 
36
41
// function codes
100
105
DECLARE_LEGACY_CPU_DEVICE(M68LC040, m68lc040);
101
106
DECLARE_LEGACY_CPU_DEVICE(M68040, m68040);
102
107
DECLARE_LEGACY_CPU_DEVICE(SCC68070, scc68070);
 
108
DECLARE_LEGACY_CPU_DEVICE(M68340, m68340);
 
109
DECLARE_LEGACY_CPU_DEVICE(MCF5206E, mcf5206e);
103
110
 
104
111
 
105
112
void m68k_set_encrypted_opcode_range(device_t *device, offs_t start, offs_t end);