| 736 | } |
| 737 | |
| 738 | static BYTE __stdcall IOWrite_C06x(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nExecutedCycles) |
| 739 | { |
| 740 | switch (addr & 0xf) |
| 741 | { |
| 742 | case 0x0: |
| 743 | if (g_Apple2Type == A2TYPE_PRAVETS8A) |
| 744 | return GetPravets().SetCapsLockAllowed(d); |
| 745 | else |
| 746 | return IO_Null(pc, addr, bWrite, d, nExecutedCycles); |
| 747 | } |
| 748 | return IO_Null(pc, addr, bWrite, d, nExecutedCycles); |
| 749 | } |
| 750 | |
| 751 | //------------------------------------- |
| 752 |
nothing calls this directly
no test coverage detected