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

Function cxxx_write

core/misc.c:346–349  ·  view source on GitHub ↗

Write to the 0xCXXX range of ports */

Source from the content-addressed store, hash-verified

344
345/* Write to the 0xCXXX range of ports */
346static void cxxx_write(const uint16_t pio, const uint8_t byte, bool poke) {
347 (void)poke;
348 cxxx.ports[pio] = byte;
349}
350
351static const eZ80portrange_t pcxxx = {
352 .read = cxxx_read,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected