mirror of
https://github.com/holub/mame
synced 2025-04-27 10:43:07 +03:00
unmix commas style (nw)
This commit is contained in:
parent
d15bad89f2
commit
b4d0afcad9
@ -41,21 +41,21 @@ enum
|
||||
class cosmicos_state : public driver_device
|
||||
{
|
||||
public:
|
||||
cosmicos_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, CDP1802_TAG),
|
||||
m_cti(*this, CDP1864_TAG),
|
||||
m_led(*this, DM9368_TAG),
|
||||
m_cassette(*this, "cassette"),
|
||||
m_speaker(*this, "speaker"),
|
||||
m_ram(*this, RAM_TAG),
|
||||
m_rom(*this, CDP1802_TAG),
|
||||
m_key_row(*this, {"Y1", "Y2", "Y3", "Y4"}),
|
||||
m_io_data(*this, "DATA"),
|
||||
m_special(*this, "SPECIAL"),
|
||||
m_buttons(*this, "BUTTONS")
|
||||
, m_digits(*this, "digit%u", 0U)
|
||||
, m_leds(*this, "led%u", 0U)
|
||||
cosmicos_state(const machine_config &mconfig, device_type type, const char *tag) :
|
||||
driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, CDP1802_TAG),
|
||||
m_cti(*this, CDP1864_TAG),
|
||||
m_led(*this, DM9368_TAG),
|
||||
m_cassette(*this, "cassette"),
|
||||
m_speaker(*this, "speaker"),
|
||||
m_ram(*this, RAM_TAG),
|
||||
m_rom(*this, CDP1802_TAG),
|
||||
m_key_row(*this, {"Y1", "Y2", "Y3", "Y4"}),
|
||||
m_io_data(*this, "DATA"),
|
||||
m_special(*this, "SPECIAL"),
|
||||
m_buttons(*this, "BUTTONS"),
|
||||
m_digits(*this, "digit%u", 0U),
|
||||
m_leds(*this, "led%u", 0U)
|
||||
{ }
|
||||
|
||||
DECLARE_READ8_MEMBER( read );
|
||||
|
@ -39,9 +39,9 @@ public:
|
||||
m_ram(*this, RAM_TAG),
|
||||
m_rom(*this, Z80_TAG),
|
||||
m_char_rom(*this, "chargen"),
|
||||
m_y(*this, "Y%u", 0)
|
||||
, m_digits(*this, "digit%u", 0U)
|
||||
, m_pwrup(0),
|
||||
m_y(*this, "Y%u", 0),
|
||||
m_digits(*this, "digit%u", 0U),
|
||||
m_pwrup(0),
|
||||
m_userint(1),
|
||||
m_clkint(1),
|
||||
m_copint(1),
|
||||
|
Loading…
Reference in New Issue
Block a user