mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
banprestoms.cpp: Fix clang error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
This commit is contained in:
parent
748ad15430
commit
53a3d926ea
@ -261,7 +261,7 @@ void banprestoms_state::prg_map(address_map &map)
|
|||||||
map(0x0e0004, 0x0e0005).portr("IN2");
|
map(0x0e0004, 0x0e0005).portr("IN2");
|
||||||
|
|
||||||
// Expects a '1' when entering RTC test (RTC ready line?)
|
// Expects a '1' when entering RTC test (RTC ready line?)
|
||||||
map(0x0e0006, 0x0e0007).lr8(NAME([this](offs_t offset) { return 1; }));
|
map(0x0e0006, 0x0e0007).lr8(NAME([](offs_t offset) { return 1; }));
|
||||||
/*
|
/*
|
||||||
* Unknown RTC type (service mode in tvdenwad -> first item)
|
* Unknown RTC type (service mode in tvdenwad -> first item)
|
||||||
* 4-bit access, in lower/upper digit fashion
|
* 4-bit access, in lower/upper digit fashion
|
||||||
|
Loading…
Reference in New Issue
Block a user