MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / fxxx_read

Function fxxx_read

core/misc.c:390–394  ·  view source on GitHub ↗

Read from the 0xFXXX range of ports */

Source from the content-addressed store, hash-verified

388
389/* Read from the 0xFXXX range of ports */
390static 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
396static const eZ80portrange_t pfxxx = {
397 .read = fxxx_read,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected