From UTAIIe:5-28: If INTCXROM==0 && SLOTC3ROM==0 Then $C300-C3FF is internal ROM
| 1210 | |
| 1211 | // From UTAIIe:5-28: If INTCXROM==0 && SLOTC3ROM==0 Then $C300-C3FF is internal ROM |
| 1212 | static void IoHandlerSlot3CardOut(void) |
| 1213 | { |
| 1214 | _ASSERT(!SW_INTCXROM && !SW_SLOTC3ROM); |
| 1215 | |
| 1216 | for (UINT i = 0; i < 16; i++) |
| 1217 | { |
| 1218 | IORead[SLOT3 * 16 + i] = IO_Cxxx; |
| 1219 | IOWrite[SLOT3 * 16 + i] = IO_Cxxx; |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | static void IoHandlerCardsIn(void) |
| 1224 | { |
no outgoing calls
no test coverage detected