mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
fix clang build (nw)
This commit is contained in:
parent
ace8e401fc
commit
7427f8ea4b
@ -75,7 +75,7 @@ private:
|
|||||||
required_ioport m_config;
|
required_ioport m_config;
|
||||||
|
|
||||||
std::unique_ptr<uint8_t[]> m_ram;
|
std::unique_ptr<uint8_t[]> m_ram;
|
||||||
emu_timer *m_read_cassette_timer;
|
//emu_timer *m_read_cassette_timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ void _1943_state::c1943b_map(address_map &map)
|
|||||||
|
|
||||||
// the bootleg expects 0x00 to be returned from the protection reads
|
// the bootleg expects 0x00 to be returned from the protection reads
|
||||||
// because the protection has been patched out
|
// because the protection has been patched out
|
||||||
map(0xc007, 0xc007).lr8("mcu_r", [this]() -> u8 { return 0x00; });
|
map(0xc007, 0xc007).lr8("mcu_r", []() -> u8 { return 0x00; });
|
||||||
map(0xc807, 0xc807).noprw();
|
map(0xc807, 0xc807).noprw();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user