mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
concept/concept.cpp: Fix collision with "concept" reserved word in C++20 warned by GCC 13. [R. Belmont]
This commit is contained in:
parent
e17706aec2
commit
b4c9b347f8
@ -62,7 +62,7 @@ void concept_state::concept_memmap(address_map &map)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static INPUT_PORTS_START( concept )
|
static INPUT_PORTS_START( corvus_concept )
|
||||||
|
|
||||||
PORT_START("KEY0") /* port 0: keys 0x00 through 0x0f */
|
PORT_START("KEY0") /* port 0: keys 0x00 through 0x0f */
|
||||||
PORT_BIT(0x0001, IP_ACTIVE_HIGH, IPT_KEYBOARD) PORT_NAME("(right)") PORT_CODE(KEYCODE_RIGHT)
|
PORT_BIT(0x0001, IP_ACTIVE_HIGH, IPT_KEYBOARD) PORT_NAME("(right)") PORT_CODE(KEYCODE_RIGHT)
|
||||||
@ -213,7 +213,7 @@ void concept_a2_cards(device_slot_interface &device)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void concept_state::concept(machine_config &config)
|
void concept_state::corvus_concept(machine_config &config)
|
||||||
{
|
{
|
||||||
/* basic machine hardware */
|
/* basic machine hardware */
|
||||||
M68000(config, m_maincpu, 16.364_MHz_XTAL / 2);
|
M68000(config, m_maincpu, 16.364_MHz_XTAL / 2);
|
||||||
@ -321,4 +321,4 @@ ROM_START( concept )
|
|||||||
ROM_END
|
ROM_END
|
||||||
|
|
||||||
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME */
|
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME */
|
||||||
COMP( 1982, concept, 0, 0, concept, concept, concept_state, empty_init, "Corvus Systems", "Concept" , 0 )
|
COMP( 1982, concept, 0, 0, corvus_concept, corvus_concept, concept_state, empty_init, "Corvus Systems", "Concept" , 0 )
|
||||||
|
@ -41,7 +41,7 @@ public:
|
|||||||
m_videoram(*this,"videoram")
|
m_videoram(*this,"videoram")
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
void concept(machine_config &config);
|
void corvus_concept(machine_config &config);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
required_device<cpu_device> m_maincpu;
|
required_device<cpu_device> m_maincpu;
|
||||||
|
Loading…
Reference in New Issue
Block a user