Read from the 0xFXXX range of ports */
| 388 | |
| 389 | /* Read from the 0xFXXX range of ports */ |
| 390 | static uint8_t fxxx_read(const uint16_t pio, bool peek) { |
| 391 | (void)pio; /* Uncomment me when needed */ |
| 392 | (void)peek; |
| 393 | return 0; |
| 394 | } |
| 395 | |
| 396 | static const eZ80portrange_t pfxxx = { |
| 397 | .read = fxxx_read, |
nothing calls this directly
no outgoing calls
no test coverage detected