diff options
author | 2017-03-05 18:55:30 +0100 | |
---|---|---|
committer | 2017-03-05 18:55:30 +0100 | |
commit | 7a2c159724e7696c42b0480bf6b1e7bdd20a8e05 (patch) | |
tree | 26e25f9b9e7b9662bf1cb9a7b2cf46069966d3d5 /src/devices/sound/ay8910.cpp | |
parent | 74a20c57bd302094e66f866eadb8085451380be6 (diff) |
ay8910: Rename write handler, as it's not that most common setup
Diffstat (limited to 'src/devices/sound/ay8910.cpp')
-rw-r--r-- | src/devices/sound/ay8910.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/sound/ay8910.cpp b/src/devices/sound/ay8910.cpp index 4da686b0cb4..e2e620ac4f1 100644 --- a/src/devices/sound/ay8910.cpp +++ b/src/devices/sound/ay8910.cpp @@ -1119,7 +1119,8 @@ WRITE8_MEMBER( ay8910_device::data_w ) #endif } -WRITE8_MEMBER( ay8910_device::write ) +// here, BC1 is hooked up to A0 on the host and BC2 is hooked up to A1 +WRITE8_MEMBER( ay8910_device::write_bc1_bc2 ) { switch (offset & 3) { |