diff options
author | 2018-01-18 17:13:10 +0100 | |
---|---|---|
committer | 2018-01-19 08:23:19 +0100 | |
commit | d0715c830d0f3866a6bac66c46cad83ca112c7b0 (patch) | |
tree | 2dfcfee4360916b8a6fc95d0e6c9f1e89163e088 /src/mame/drivers/wink.cpp | |
parent | 7f0684bcacfbbf50a1e76b4ad1f0a36a903c5511 (diff) |
memory: Deambiguate handlers, also a hint of things to come (nw)
Diffstat (limited to 'src/mame/drivers/wink.cpp')
-rw-r--r-- | src/mame/drivers/wink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/wink.cpp b/src/mame/drivers/wink.cpp index f58c49eb94a..75747fab254 100644 --- a/src/mame/drivers/wink.cpp +++ b/src/mame/drivers/wink.cpp @@ -168,7 +168,7 @@ WRITE8_MEMBER(wink_state::prot_w) static ADDRESS_MAP_START( wink_io, AS_IO, 8, wink_state ) ADDRESS_MAP_GLOBAL_MASK(0xff) - AM_RANGE(0x00, 0x1f) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette") //0x10-0x1f is likely to be something else + AM_RANGE(0x00, 0x1f) AM_RAM_DEVWRITE("palette", palette_device, write8) AM_SHARE("palette") //0x10-0x1f is likely to be something else // AM_RANGE(0x20, 0x20) AM_WRITENOP //??? seems unused.. AM_RANGE(0x21, 0x21) AM_WRITE(player_mux_w) //??? no mux on the pcb. AM_RANGE(0x22, 0x22) AM_WRITE(tile_banking_w) |