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