diff options
| author | 2025-10-24 18:59:32 +0200 | |
|---|---|---|
| committer | 2025-10-24 18:59:32 +0200 | |
| commit | 015072931a433f589fe48cc0eacff204f5fa0a8c (patch) | |
| tree | 9c30cb3e07c7496ca155832bd9b35f72467e14f1 | |
| parent | eb7ed561ef2c4981894eaa6aadd9cfd547a1314b (diff) | |
bus/pc98_cbus/pc9801_14: add dsw access log
| -rw-r--r-- | src/devices/bus/pc98_cbus/pc9801_14.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/bus/pc98_cbus/pc9801_14.cpp b/src/devices/bus/pc98_cbus/pc9801_14.cpp index 096a1bc2f03..5d2ee3458c5 100644 --- a/src/devices/bus/pc98_cbus/pc9801_14.cpp +++ b/src/devices/bus/pc98_cbus/pc9801_14.cpp @@ -94,6 +94,7 @@ void pc9801_14_device::io_map(address_map &map) NAME([this] (offs_t offset, u8 data) { m_pit->write(2, data); })); map(0x018e, 0x018e).lrw8( NAME([this] (offs_t offset) { + LOG("PC9801-14: read DSW\n"); return 0x80; // dip switch }), NAME([this] (offs_t offset, u8 data) { |
