| 256 | } |
| 257 | |
| 258 | BYTE __stdcall CMouseInterface::IOWrite(WORD PC, WORD uAddr, BYTE bWrite, BYTE uValue, ULONG nExecutedCycles) |
| 259 | { |
| 260 | UINT uSlot = ((uAddr & 0xff) >> 4) - 8; |
| 261 | CMouseInterface* pMouseIF = (CMouseInterface*) MemGetSlotParameters(uSlot); |
| 262 | |
| 263 | BYTE byRS; |
| 264 | byRS = uAddr & 3; |
| 265 | pMouseIF->m_6821.Write( byRS, uValue ); |
| 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | //=========================================================================== |
| 271 |
nothing calls this directly
no test coverage detected