mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fixed files missed in big update, but only used by MESS (no whatsnew)
This commit is contained in:
parent
d7b295a387
commit
86ae8022d2
@ -48,6 +48,7 @@ enum
|
||||
const device_type INTEL_28F016S5 = &device_creator<intel_28f016s5_device>;
|
||||
const device_type SHARP_LH28F016S = &device_creator<sharp_lh28f016s_device>;
|
||||
const device_type FUJITSU_29F016A = &device_creator<fujitsu_29f016a_device>;
|
||||
const device_type FUJITSU_29DL16X = &device_creator<fujitsu_29dl16x_device>;
|
||||
const device_type INTEL_E28F400 = &device_creator<intel_e28f400_device>;
|
||||
const device_type MACRONIX_29L001MC = &device_creator<macronix_29l001mc_device>;
|
||||
const device_type PANASONIC_MN63F805MNP = &device_creator<panasonic_mn63f805mnp_device>;
|
||||
@ -215,6 +216,9 @@ intel_28f016s5_device::intel_28f016s5_device(const machine_config &mconfig, cons
|
||||
fujitsu_29f016a_device::fujitsu_29f016a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: intelfsh8_device(mconfig, FUJITSU_29F016A, "Fujitsu 29F016A Flash", tag, owner, clock, FLASH_FUJITSU_29F016A) { }
|
||||
|
||||
fujitsu_29dl16x_device::fujitsu_29dl16x_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: intelfsh8_device(mconfig, FUJITSU_29DL16X, "Fujitsu 29DL16X Flash", tag, owner, clock, FLASH_FUJITSU_29DL16X) { }
|
||||
|
||||
sharp_lh28f016s_device::sharp_lh28f016s_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: intelfsh8_device(mconfig, SHARP_LH28F016S, "Sharp LH28F016S Flash", tag, owner, clock, FLASH_SHARP_LH28F016S) { }
|
||||
|
||||
|
@ -172,6 +172,12 @@ public:
|
||||
fujitsu_29f016a_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
||||
};
|
||||
|
||||
class fujitsu_29dl16x_device : public intelfsh8_device
|
||||
{
|
||||
public:
|
||||
fujitsu_29dl16x_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
|
||||
};
|
||||
|
||||
class sharp_lh28f016s_device : public intelfsh8_device
|
||||
{
|
||||
public:
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
#define MCFG_CDP1863_ADD(_tag, _clock, _clock2) \
|
||||
MCFG_DEVICE_ADD(_tag, CDP1863, _clock) \
|
||||
cdp1863_device_config::static_set_config(*device, _clock2);
|
||||
cdp1863_device::static_set_config(*device, _clock2);
|
||||
|
||||
|
||||
|
||||
|
@ -520,7 +520,7 @@ void crt9007_device::device_start()
|
||||
assert(m_screen != NULL);
|
||||
|
||||
// set horizontal pixels per column
|
||||
m_hpixels_per_column = m_hpixels_per_column;
|
||||
m_hpixels_per_column = hpixels_per_column;
|
||||
|
||||
// register for state saving
|
||||
// state_save_register_device_item(this, 0, );
|
||||
|
@ -71,7 +71,8 @@
|
||||
struct crt9007_interface
|
||||
{
|
||||
const char *m_screen_tag; /* screen we are acting on */
|
||||
|
||||
int hpixels_per_column; /* number of pixels per video memory address */
|
||||
|
||||
devcb_write_line m_out_int_cb;
|
||||
devcb_write_line m_out_dmar_cb;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user