mirror of
https://github.com/holub/mame
synced 2025-05-30 17:41:47 +03:00
i186: stuff (nw)
This commit is contained in:
parent
e0c22c0893
commit
286199e821
@ -132,6 +132,7 @@ i80188_cpu_device::i80188_cpu_device(const machine_config &mconfig, const char *
|
||||
i80186_cpu_device::i80186_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: i8086_common_cpu_device(mconfig, I80186, "I80186", tag, owner, clock, "i80186", __FILE__)
|
||||
, m_program_config("program", ENDIANNESS_LITTLE, 16, 20, 0)
|
||||
, m_opcodes_config("opcodes", ENDIANNESS_LITTLE, 16, 20, 0)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, 16, 16, 0)
|
||||
, m_read_slave_ack_func(*this)
|
||||
, m_out_chip_select_func(*this)
|
||||
@ -146,6 +147,7 @@ i80186_cpu_device::i80186_cpu_device(const machine_config &mconfig, const char *
|
||||
i80186_cpu_device::i80186_cpu_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source, int data_bus_size)
|
||||
: i8086_common_cpu_device(mconfig, type, name, tag, owner, clock, shortname, source)
|
||||
, m_program_config("program", ENDIANNESS_LITTLE, data_bus_size, 20, 0)
|
||||
, m_opcodes_config("opcodes", ENDIANNESS_LITTLE, data_bus_size, 20, 0)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, data_bus_size, 16, 0)
|
||||
, m_read_slave_ack_func(*this)
|
||||
, m_out_chip_select_func(*this)
|
||||
|
@ -170,6 +170,7 @@ const device_type I80286 = device_creator<i80286_cpu_device>;
|
||||
i80286_cpu_device::i80286_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: i8086_common_cpu_device(mconfig, I80286, "I80286", tag, owner, clock, "i80286", __FILE__)
|
||||
, m_program_config("program", ENDIANNESS_LITTLE, 16, 24, 0)
|
||||
, m_opcodes_config("opcodes", ENDIANNESS_LITTLE, 16, 24, 0)
|
||||
, m_io_config("io", ENDIANNESS_LITTLE, 16, 16, 0)
|
||||
, m_out_shutdown_func(*this)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user