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

Function cxxx_read

core/misc.c:340–343  ·  view source on GitHub ↗

Read from the 0xCXXX range of ports */

Source from the content-addressed store, hash-verified

338
339/* Read from the 0xCXXX range of ports */
340static uint8_t cxxx_read(const uint16_t pio, bool peek) {
341 (void)peek;
342 return cxxx.ports[pio];
343}
344
345/* Write to the 0xCXXX range of ports */
346static void cxxx_write(const uint16_t pio, const uint8_t byte, bool poke) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected