diff options
author | 2016-10-09 18:09:15 +0100 | |
---|---|---|
committer | 2016-10-09 22:40:41 +0100 | |
commit | 99a6e70646e7dddf4b96fa6f0c1df9da2244e669 (patch) | |
tree | 0408973cad7c943f83e18c65681e995b665cffda /src | |
parent | 7d270026cff4eea74b4d454150b426ec1e488aba (diff) |
change the comment, to describe what effect machine().scheduler().synchronize() actually has (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/audio/taitosnd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/taitosnd.cpp b/src/mame/audio/taitosnd.cpp index 56b23a2858e..f2ff9aa9358 100644 --- a/src/mame/audio/taitosnd.cpp +++ b/src/mame/audio/taitosnd.cpp @@ -118,7 +118,7 @@ WRITE8_MEMBER( tc0140syt_device::master_port_w ) WRITE8_MEMBER( tc0140syt_device::master_comm_w ) { - machine().scheduler().synchronize(); // let slavecpu catch up before changing anything + machine().scheduler().synchronize(); // let slavecpu catch up (after we return and the main cpu finishes what it's doing) data &= 0x0f; /* this is important, otherwise ballbros won't work */ switch (m_mainmode) @@ -155,7 +155,7 @@ WRITE8_MEMBER( tc0140syt_device::master_comm_w ) READ8_MEMBER( tc0140syt_device::master_comm_r ) { - machine().scheduler().synchronize(); // let slavecpu catch up before changing anything + machine().scheduler().synchronize(); // let slavecpu catch up (after we return and the main cpu finishes what it's doing) UINT8 res = 0; switch (m_mainmode) |