| 567 | } |
| 568 | |
| 569 | static BYTE __stdcall IOWrite_C00x(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nExecutedCycles) |
| 570 | { |
| 571 | if ((addr & 0xf) <= 0xB) |
| 572 | return MemSetPaging(pc, addr, bWrite, d, nExecutedCycles); |
| 573 | else |
| 574 | return GetVideo().VideoSetMode(pc, addr, bWrite, d, nExecutedCycles); |
| 575 | } |
| 576 | |
| 577 | //------------------------------------- |
| 578 |
nothing calls this directly
no test coverage detected