Fix clang error: must explicitly qualify name of member function when taking its address (nw)

This commit is contained in:
AJR 2019-03-08 14:18:15 -05:00
parent bd6808a02a
commit 33949249a1
2 changed files with 4 additions and 4 deletions

View File

@ -637,11 +637,11 @@ void enigma2_state::enigma2a(machine_config &config)
{
/* basic machine hardware */
I8080(config, m_maincpu, CPU_CLOCK);
m_maincpu->set_addrmap(AS_PROGRAM, &enigma2a_main_cpu_map);
m_maincpu->set_addrmap(AS_IO, &enigma2a_main_cpu_io_map);
m_maincpu->set_addrmap(AS_PROGRAM, &enigma2_state::enigma2a_main_cpu_map);
m_maincpu->set_addrmap(AS_IO, &enigma2_state::enigma2a_main_cpu_io_map);
Z80(config, m_audiocpu, 2500000);
m_audiocpu->set_addrmap(AS_PROGRAM, &enigma2_audio_cpu_map);
m_audiocpu->set_addrmap(AS_PROGRAM, &enigma2_state::enigma2_audio_cpu_map);
m_audiocpu->set_periodic_int(FUNC(enigma2_state::irq0_line_hold), attotime::from_hz(8*52));

View File

@ -981,7 +981,7 @@ void expro02_state::supmodel(machine_config &config)
{
comad_noview2(config);
m_maincpu->set_addrmap(AS_PROGRAM, &supmodel_map);
m_maincpu->set_addrmap(AS_PROGRAM, &expro02_state::supmodel_map);
okim6295_device &oki(OKIM6295(config.replace(), "oki", 1584000, okim6295_device::PIN7_HIGH)); // clock frequency & pin 7 not verified
oki.set_addrmap(0, &expro02_state::oki_map);