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

« back to all changes in this revision

Viewing changes to src/emu/machine/intelfsh.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 MCFG_SHARP_LH28F016S_ADD(_tag) \
17
17
        MCFG_DEVICE_ADD(_tag, SHARP_LH28F016S, 0)
18
18
 
 
19
#define MCFG_AMD_29F080_ADD(_tag) \
 
20
        MCFG_DEVICE_ADD(_tag, AMD_29F080, 0)
 
21
 
19
22
#define MCFG_FUJITSU_29F016A_ADD(_tag) \
20
23
        MCFG_DEVICE_ADD(_tag, FUJITSU_29F016A, 0)
21
24
 
68
71
                FLASH_INTEL_28F016S5 = 0x0800,
69
72
                FLASH_FUJITSU_29F016A,
70
73
                FLASH_FUJITSU_29DL16X,
 
74
                FLASH_AMD_29F080,
71
75
                FLASH_SHARP_LH28F016S,
72
76
                FLASH_INTEL_E28F008SA,
73
77
                FLASH_MACRONIX_29L001MC,
178
182
        fujitsu_29dl16x_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
179
183
};
180
184
 
 
185
class amd_29f080_device : public intelfsh8_device
 
186
{
 
187
public:
 
188
        amd_29f080_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
 
189
};
 
190
 
181
191
class sharp_lh28f016s_device : public intelfsh8_device
182
192
{
183
193
public:
239
249
// device type definition
240
250
extern const device_type INTEL_28F016S5;
241
251
extern const device_type SHARP_LH28F016S;
 
252
extern const device_type AMD_29F080;
242
253
extern const device_type FUJITSU_29F016A;
243
254
extern const device_type FUJITSU_29DL16X;
244
255
extern const device_type INTEL_E28F400;